尝试将扩展名从chrome转换为edge,但我在浏览器.runtime.sendmessage()与侦听器时遇到了问题。 为了简化事情,我创建了一个简单的hello world扩展。 这个新扩展程序适用于镶边,但不适用于边缘。 有人知道我需要改变什么吗?
manifest.json
{
"manifest_version": 2,
"name": "My Cool Extension",
"author" : "Sandbox",
"version": "0.1",
"content_scripts": [ {
"all_frames": true,
"js": [ "jquery-3.1.1.min.js", "content_script.js" ],
"matches": [ "http://*/*", "https://*/*", "file://*/*" ]
} ],
"permissions": [ "http://*/*", "https://*/*", "storage" ],
"background": {
"scripts": [
"jquery-3.1.1.min.js",
"background.js"
],
"persistent": true
}
}
背景.js
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
console.log(request.greeting);
if (request.greeting == "hello")
sendResponse({farewell: "goodbye"});
});
content_scripts.js
browser.runtime.sendMessage({greeting: "hello"}, function(response) {
if (response != undefined) {
console.log(response.farewell);
}
});
Edge 的正确语法可在此处找到:边缘支持的 API
在注释部分中:
For Microsoft Edge, all extension APIs are under the browser namespace,
e.g. browser.browserAction.disable().
Microsoft Edge extension APIs use callbacks, not promises.
使用 browser.runtime.sendMessage() 而不是 chrome.runtime.sendMessage()。