Uncaught SyntaxError: Invalid or unexpected token (Chrome Extension)

Uncaught SyntaxError: Invalid or unexpected token (Chrome Extension)

我基本上是在尝试创建一个扩展程序来查找和替换单个图像,但是无论我 fiddle 使用多少,后台脚本都会不断出现 SyntaxError。

Screenshot of error that comes up

我大部分时间都在关注 this tutorial,除了我想要替换单个图像而不是多个图像。我已经粘贴了到目前为止的代码,并编辑了具体细节:

manifest.json

{
"manifest_version" : 2,
"name" : "Test",
"version" : "0.1",
"description" : "test",
"web_accessible_resources" : [
"*.png"
],
"icons" : {
"128": "test.png"
},
"background" : {
"scripts" : ["bgp.js"]
},
"browser_action" : {
"default_icon" : "test.png"
},
"content_scripts" : [
{
"matches" : [
"https://test.com/, https://test.com/*"
],
"js" : ["content.js"]
}
]
} 

bgp.js

console.log(“Background running”);
chrome.browserAction.onClicked.addListener(buttonClicked);
function buttonClicked(tab)
{
let msg = {
txt : “Hello”
}
chrome.tabs.sendMessage(tab.id,msg);
}
}

content.js(补全)

console.log('replacing image');
chrome.runtime.onMessage.addListener(replace);

function replace()
{

let imgs = document.querySelector(".example");

let url = chrome.extension.getURL("test.png");


   img.src = url;
console.log(url);

}

您在后台脚本中使用了错误的引号。您正在使用 ,但您应该使用 "'