diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2018-02-25 20:04:31 -0500 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2018-02-25 20:04:31 -0500 |
commit | 229240370f009a7ba1dc31f57bcfcbd2cf785d0a (patch) | |
tree | defa51219f44d19451bbcfd1e8298eadb1e3f4b7 /data/extensions/SubmitMe@0xbeef.coffee/manifest.json | |
parent | f2a3be07039056c76e3ca4e6040ec900ba64f376 (diff) |
Updated extensions
- HTTPS Everywhere updated to 2018.1.11
- "goteo.org payments with free JS" updated to 1.1
- "LibreJS compatible Pay.gov" updated to 1.3
- "Reveal hidden HTML" updated to 1.6
- Enabled WebRTC, but prevent leaking the LAN ip.
Diffstat (limited to 'data/extensions/SubmitMe@0xbeef.coffee/manifest.json')
-rw-r--r-- | data/extensions/SubmitMe@0xbeef.coffee/manifest.json | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/data/extensions/SubmitMe@0xbeef.coffee/manifest.json b/data/extensions/SubmitMe@0xbeef.coffee/manifest.json index 6a75fe7..ac4b604 100644 --- a/data/extensions/SubmitMe@0xbeef.coffee/manifest.json +++ b/data/extensions/SubmitMe@0xbeef.coffee/manifest.json @@ -1,9 +1,9 @@ {
"manifest_version": 2,
- "name": "Reveal hidden HTML elements",
- "version": "1.8",
+ "name": "Reveal hidden HTML",
+ "version": "1.6",
"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.",
+ "description": "Unhides hidden HTML. Also, has a tool that fixes some websites with broken form validation Javascript by forcing an HTTP post.",
"applications": {
"gecko": {
"id": "SubmitMe@0xbeef.coffee",
@@ -18,13 +18,12 @@ "contextMenus",
"webRequest",
"activeTab",
- "notifications",
- "<all_urls>"
+ "notifications"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
- "js": ["improve_css.js"]
+ "js": ["passive_improve_css.js"]
}],
"page_action": {
"browser_style": true,
@@ -35,10 +34,10 @@ "default_title": "Submit Me",
"default_popup": "popup/popup.html"
},
-
-
"background": {
- "scripts": ["background.js"]
+ "scripts": ["background.js"
+
+ ]
}
}
|