From ea19d5b307b8e9142712b728e7fedd039a7727ec Mon Sep 17 00:00:00 2001 From: shinigami-eyes <> Date: Sun, 16 Sep 2018 12:29:59 +0200 Subject: [PATCH] Manifest --- extension/manifest.json | 50 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 extension/manifest.json diff --git a/extension/manifest.json b/extension/manifest.json new file mode 100644 index 0000000..13d73f1 --- /dev/null +++ b/extension/manifest.json @@ -0,0 +1,50 @@ +{ + "manifest_version": 2, + "name": "Shinigami Eyes", + "author": "Shinigami Eyes", + "version": "1.0", + "description": "Highlights transphobic/anti-LGBT and trans-friendly subreddits/users/facebook pages/groups with different colors.", + "icons": { + "48": "icons/icon-48.png" + }, + "content_scripts": [ + { + "matches": [ + "*://*.facebook.com/*", + "*://*.youtube.com/*", + "*://*.reddit.com/*", + "*://*.twitter.com/*" + ], + "js": [ + "content.js" + ], + "css": [ + "content.css" + ] + } + ], + "web_accessible_resources": [ + "data/transphobic.dat", + "data/t-friendly.dat" + ], + "background": { + "scripts": [ + "background.js", + "bloomfilter.js" + ] + }, + "options_ui": { + "page": "help.html", + "open_in_tab": true + }, + "permissions": [ + "contextMenus", + "storage" + ], + "applications": { + "gecko": { + "id": "shinigamieyes@shinigamieyes", + "strict_min_version": "60.0" + } + } +} \ No newline at end of file