dtp-webextension/manifest.json

23 lines
542 B
JSON
Raw Normal View History

2020-06-09 21:27:28 +08:00
{
"name": "Download The Pics (WebExtension Client)",
"version": "1.0",
"manifest_version": 2,
"description": "Download The Pics WebExtension Client. You also need the local daemon process to make this extension works",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"js": ["common_content_script.js"]
}
],
"permissions": [
"activeTab", "declarativeContent"
]
2020-06-09 21:27:28 +08:00
}