summaryrefslogtreecommitdiff
path: root/data/extensions/SubmitMe@0xbeef.coffee/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'data/extensions/SubmitMe@0xbeef.coffee/manifest.json')
-rw-r--r--data/extensions/SubmitMe@0xbeef.coffee/manifest.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/data/extensions/SubmitMe@0xbeef.coffee/manifest.json b/data/extensions/SubmitMe@0xbeef.coffee/manifest.json
new file mode 100644
index 0000000..6a75fe7
--- /dev/null
+++ b/data/extensions/SubmitMe@0xbeef.coffee/manifest.json
@@ -0,0 +1,44 @@
+{
+ "manifest_version": 2,
+ "name": "Reveal hidden HTML elements",
+ "version": "1.8",
+ "author": "Nathan Nichols",
+ "description": "Allows you to force all hidden text on a page to show, and alerts you if it detects a significant amount of hidden text on a page.",
+ "applications": {
+ "gecko": {
+ "id": "SubmitMe@0xbeef.coffee",
+ "strict_min_version": "42.0"
+ }
+ },
+ "icons":{
+ "16": "icons/16x16.png",
+ "48": "icons/48x48.png"
+ },
+ "permissions": [
+ "contextMenus",
+ "webRequest",
+ "activeTab",
+ "notifications",
+ "<all_urls>"
+ ],
+ "content_scripts": [
+ {
+ "matches": ["<all_urls>"],
+ "js": ["improve_css.js"]
+ }],
+ "page_action": {
+ "browser_style": true,
+ "default_icon": {
+ "16": "icons/16x16.png",
+ "48": "icons/48x48.png"
+ },
+ "default_title": "Submit Me",
+ "default_popup": "popup/popup.html"
+ },
+
+
+ "background": {
+ "scripts": ["background.js"]
+ }
+
+}