SCBao/manifest.json

18 lines
479 B
JSON

{
"manifest_version": 3,
"name": "支語寶",
"version": "0.1.0 alpha",
"description": "將所有網頁中的指定詞語替換為其他詞語。",
"permissions": ["storage", "activeTab", "scripting"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}