paraMatrix/manifest.json

44 行
943 B
JSON
Raw パーマリンク 通常表示 履歴

2023-04-29 21:50:32 +09:00
{
"manifest_version": 2,
"name": "paraMatrix",
"author": "Wrongthink",
2023-12-12 13:09:57 +09:00
"homepage_url": "https://gitler.moe/wrongthink/paramatrix",
2023-04-29 21:50:32 +09:00
"description": "block requests based on domain and type",
2023-12-12 13:09:57 +09:00
"version": "🐢.🦍",
2023-04-29 21:50:32 +09:00
"browser_action": {
"default_title": "paraMatrix",
"default_popup": "src/popup.html",
"default_icon": "icon.svg"
},
"icons": {
"48": "icon.svg"
},
"background": {
2023-12-12 13:09:57 +09:00
"scripts": ["src/bg.js"],
"persistent": false,
"type": "module"
2023-04-29 21:50:32 +09:00
},
"content_scripts": [{
"js": ["src/content.js"],
"matches": ["<all_urls>"],
"run_at": "document_start"
}],
"options_ui": {
"page": "src/settings.html",
"open_in_tab": true
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{936cea12-8e61-4929-b589-caece971bbd7}"
}
}
}