gpt4 book ai didi

javascript - getSelection 在 Chrome 扩展中不返回任何值

转载 作者:行者123 更新时间:2023-11-30 18:35:34 25 4
gpt4 key购买 nike

我正在尝试一个简单的 chrome 扩展,我在其中选择一些文本并按下按钮,然后用谷歌搜索所选术语。

下面是我的background.html

<script>
function Req() {
var str=document.getSelection().toString(); //window.getSelection().toString() tried both
alert(str);
var Call =' http://www.google.com/search?q='+str;
alert(Call)
chrome.tabs.create({url: Call});
}
</script>
</head>
<body onload="Req()" >
</body>
</html>

下面是我的ma​​nifest.json

{
"background_html":"background.html",
"name": "goog app",
"description": "googles selected term",
"browser_action": {
"default_icon": "icon.png",
"popup":"background.html"
},
"permissions": ["tabs","http://www.google.com/","https://www.google.com/"],

"version": "1.0"
}

我已经尝试了所有方法,但 window.getSelection().toString() 没有返回任何值。请帮我找出问题所在。

最佳答案

你有很多错误

关于javascript - getSelection 在 Chrome 扩展中不返回任何值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8303243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com