-1
我構建了一個Chrome擴展程序,並且我希望它在我觀看某些特定網站(如「Youtube」)時自動工作,我該如何做到這一點?任何幫助,將不勝感激。在加載特定網站時自動運行我的Chrome擴展程序
{
"manifest_version": 2,
"name": "My extension",
"description": "bla bla",
"version": "1.0",
"browser_action": {
"default_icon": "gjx.png",
"default_popup": "popup.html"
},
"permissions": [
"http://localhost/*",
"tabs",
"cookies",
"storage"
],
"background":["crawler.js"],
"content_scripts":[{
"matches": ["*://*.youtube.com/*"],
"js": ["crawler.js"]
}]
}
我都試過了,但它不工作。 @PredatorIWD –
@SiruiLi您可以將「manifest.json」和您的內容腳本添加到問題中嗎? – PredatorIWD
它在這裏。 @PredatorIWD –