dtp-webextension/manifest.json

22 lines
548 B
JSON
Raw Permalink Normal View History

2020-06-09 21:27:28 +08:00
{
2024-06-03 22:50:19 +08:00
"manifest_version": 3,
2020-06-09 21:27:28 +08:00
"name": "Download The Pics (WebExtension Client)",
"description": "Download The Pics WebExtension Client. You also need the local daemon process to make this extension works",
2024-06-03 22:50:19 +08:00
"version": "2.0",
"icons": {
"48": "icon.png"
2020-06-09 21:27:28 +08:00
},
2024-06-03 22:50:19 +08:00
"permissions": ["activeTab", "declarativeContent"],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
2020-06-09 21:27:28 +08:00
},
"content_scripts": [
2024-06-03 22:50:19 +08:00
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"js": ["common_content_script.js"]
}
]
2020-06-09 21:27:28 +08:00
}