diff options
author | NateN1222 <nathannichols454@gmail.com> | 2017-07-28 12:16:55 -0500 |
---|---|---|
committer | NateN1222 <nathannichols454@gmail.com> | 2017-07-28 12:16:55 -0500 |
commit | 08e2c650cacb372b913e60c91874af9fcbb786a0 (patch) | |
tree | 387ac2383fa7582d6e361b0408918e2e85d7058b /manifest.json |
Initial commit
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..4d6825a --- /dev/null +++ b/manifest.json @@ -0,0 +1,44 @@ +{ + "manifest_version": 2, + "name": "GNU LibreJS [webExtensions]", + "short_name": "LibreJS [experimental]", + "version": "1.0", + "author": "See file 'authors'", + "description": "Only allows free and/or trivial Javascript to run.", + "applications": { + "gecko": { + "id": "bug-librejs@gnu.org", + "strict_min_version": "42.0" + } + }, + "icons":{ + "64": "icons/librejs.png" + }, + "permissions": [ + "contextMenus", + "webRequest", + "webRequestBlocking", + "activeTab", + "notifications", + "storage", + "tabs" + ], + "browser_action": { + "browser_style": true, + "default_icon": { + "64": "icons/librejs.png" + }, + "default_title": "LibreJS", + "default_popup": "html/display_panel/content/display-panel.html" + }, + "options_ui": { + "page": "html/preferences_panel/preferences_panel.html" + }, + "web_accessible_resources": [ + "html/report_page/report.html" + ], + "background": { + "scripts": ["main_background.js"] + } + +} |