From 15de6776a959c0b267b6f601417caf1f973b3b38 Mon Sep 17 00:00:00 2001 From: Florrie Date: Fri, 22 Mar 2019 17:51:06 -0300 Subject: Initial commit --- extension/manifest.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 extension/manifest.json (limited to 'extension/manifest.json') diff --git a/extension/manifest.json b/extension/manifest.json new file mode 100644 index 0000000..27cafda --- /dev/null +++ b/extension/manifest.json @@ -0,0 +1,36 @@ +{ + "manifest_version": 2, + "name": "Interactive BGM", + "version": "1.0", + + "description": "Adds a red border to all webpages matching mozilla.org.", + + "permissions": [ + "activeTab", + "nativeMessaging" + ], + + "applications": { + "gecko": { + "id": "interactive_bgm@florrie.ed1.club", + "strict_min_version": "50.0" + } + }, + + "browser_action": { + "default_icon": "icons/beasts-32.png", + "default_title": "Interactive BGM", + "default_popup": "popup/index.html" + }, + + "content_scripts": [ + { + "matches": [""], + "js": ["borderify.js"] + } + ], + + "background": { + "scripts": ["background.js"] + } +} -- cgit 1.3.0-6-gf8a5