From 08e2c650cacb372b913e60c91874af9fcbb786a0 Mon Sep 17 00:00:00 2001 From: NateN1222 Date: Fri, 28 Jul 2017 12:16:55 -0500 Subject: Initial commit --- manifest.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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"] + } + +} -- cgit v1.2.3