需要关于从chrome扩展到python发送变量的帮助



我想做一个小脚本,下载"地图";当用户打开游戏内链接时自动。一旦链接在chrome中打开,扩展获得当前URL并将其发送给python(这是我现在卡住的地方),然后关闭选项卡,如果成功(因为它会失败,如果python脚本不运行?)。一旦在python中,我就继续下载有问题的地图,并将其添加到Songs文件夹中,他唯一要做的就是按下F5

现在,我有这些代码:

Manifest.json:

{
"name": "Osu!AltDownload",
"version": "1.0",
"description": "A requirement to make osu!AltDownload work",
"permissions": ["tabs","http://localhost:5000/"],
"background": {
"scripts": ["Osu!AltDownload.js"],
"persistant": false
},
"manifest_version": 2
}

俄勒冈州立大学! AltDownload.js

chrome.tabs.onUpdated.addListener( function (tabId, changeInfo, tab) {
if (changeInfo.status == 'complete') {
chrome.tabs.query({active: true, currentWindow: true}, tabs => {
let url = tabs[0].url;
});
var xhr = new XMLHttpRequest();
xhr.open("POST", "http://localhost:5000/",true);
xhr.send(url); 
}
})

接收链接并下载"地图"的脚本:

import browser_cookie3
import requests
from bs4 import BeautifulSoup as BS
import re
import os
def maplink(osupath):
link = link #obtain link from POST ?
if link.split("/",4[:4]) == ['https:', '', 'osu.ppy.sh', 'beatmapsets']:
Download_map(osupath, link.split("#osu")[0])
def Download_map(osupath, link):
cj = browser_cookie3.load()
print("Downloading", link)
headers = {"referer": link}
with requests.get(link) as r:
t = BS(r.text, 'html.parser').title.text.split("·")[0]
with requests.get(link+"/download", stream=True, cookies=cj, headers=headers) as r:
if r.status_code == 200:
try:
id = re.sub("[^0-9]", "", link)
with open(os.path.abspath(osupath+"/Songs/"+id+" "+t+".osz"), "wb") as otp:
otp.write(r.content)
except:
print("You either aren't connected on osu!'s website or you're limited by the API, in which case you now have to wait 1h and then try again.")

我想添加,我在我的扩展中使用这些代码行:

var xhr = new XMLHttpRequest();
xhr.open("POST", "http://localhost:5000/",true);
xhr.send(url);

它们来自我的一个谷歌搜索,但我真的不明白我如何在python中处理POST请求,我甚至不知道我是否走对了路。

有些人可能会说我在这个主题上没有做太多的研究,但是在大约50个chrome标签中,我还没有真正找到任何可以真正给我一个正确方法的想法。

您必须运行web服务器才能获得http requests

您可以使用Flask

from flask import Flask, request
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'POST':
#print(request.form)
print(request.data)
return "OK"
if __name__ == '__main__':
app.run(port=5000)    


如果您只想发送url,那么您甚至可以使用GET而不是POST并发送

http://localhost:5000/?data=your_url

这里的your_url是由tab[0].url得到的。

xhr.open("GET", "http://localhost:5000/?data=" + url, true);
xhr.send();  // or maybe xhr.send(null);

然后你可以用

from flask import Flask, request
app = Flask(__name__)
@app.route('/')
def index():
print(request.args.get('data'))
return "OK"

if __name__ == '__main__':
app.run(port=5000)        

编辑:

访问http://localhost:5000/test时直接使用JavaScript测试Flask的示例

from flask import Flask, request
app = Flask(__name__)
@app.route('/')
def index():
print(request.args.get('data'))
return "OK"
@app.route('/test/')
def test():
return """
<script>
var url = "https://stackoverflow.com/questions/65867136/need-help-about-sending-variable-from-chrome-extension-to-python/";
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://localhost:5000/?data=" + url, true);
xhr.send(); 
</script>
"""            
if __name__ == '__main__':
app.run(port=5000)        

最终我可以用bookmarklet

进行测试
javascript:{window.location='http://localhost:5000/?data='+encodeURIComponent(window.location.href)}

我把它作为url放在收藏夹的书签中-但是这个重新加载页面

或使用现代fetch()(而不是旧的XMLHttpRequest()),它不会重新加载页面。

javascript:{fetch('http://localhost:5000/?data='+encodeURIComponent(window.location.href))}

相关内容

  • 没有找到相关文章

最新更新