diff options
Diffstat (limited to 'manifest.json')
| -rw-r--r-- | manifest.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..be28db0 --- /dev/null +++ b/manifest.json @@ -0,0 +1,36 @@ + { + "manifest_version": 2, + "name": "strelizia Uploader", + "description": "Uploader for strelizia", + "version": "2019.1.24.1", + "version_name": "Biribiri", + "options_ui": { + "page": "settings.html", + "chrome_style": false, + "open_in_tab": true + }, + "icons": { + "48": "logo-48x48.png", + "128": "logo-128x128.png" + }, + "permissions": [ + "contextMenus", + "storage", + "notifications", + "tabs", + "webRequest", + "webRequestBlocking", + "<all_urls>" + ], + "background": { + "scripts": [ + "axios.min.js", + "background.js" + ], + "persistent": true + }, + "web_accessible_resources": [ + "content.js", + "content.css" + ] + } |