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"]
|
|
|
|
}
|
|
|
|
],
|
2020-06-24 17:17:22 +08:00
|
|
|
"permissions": [
|
|
|
|
"activeTab", "declarativeContent"
|
|
|
|
]
|
2020-06-09 21:27:28 +08:00
|
|
|
}
|