我正在尝试创建一个chrome扩展,如果用户在任何网页中选择该项并按 Ctrl + n ,则应更改突出显示的文本拼写。我该怎么做?我尝试使用后台事件页面功能,其中使用了DOMContentLoaded,因此我可以使用有两个任务的侦听器,一个是查找突出显示的文本,另一个是侦听事件,如 Ctrl + n 并执行撤消突出显示文本拼写的工作。但是,当我选择文本时,所选文本也不会显示在控制台中。
我尝试过以下方式
{
"manifest_version": 2,
"name": "RevText",
"description": "Reverse the spelling of higlighted text",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "html/popup.html",
"default_title": "click me"
},
"permissions": [
"activeTab",
"storage"
],
"options_page": "html/options.html",
"background": {
"scripts": ["js/eventPage.js"],
"persistent": false
}
}
function init() {
textToHyperLink();
}
function textToHyperLink(event) {
console.log(event);
var text = "";
if (window.getSelection) { // when selecting the text, the highlighted/selected text is not shown in console
text = window.getSelection().toString();
// show the popup with the name of highlighted text
console.log(text);
alert(text);
} else if (document.selection) {
text = document.selection.createRange().text;
}
return text;
}
if(document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded',init);
} else {
init();
}
更新
尝试将content_scripts视为
{
"background": {
"scripts": ["js/eventPage.js"],
"persistent": false
},
"content_scripts": [
{
"matches" : ["http://*/*", "https://*/*"],
"js" : ["js/content.js"]
}
]
}
}
function init(event) {
console.log('event', event);
alert('event');
}
document.addEventListener('keydown',init);
这样,当我点击文本并点击随机键时,控制台不会记录任何打开警报框的内容。