Nothing to Hide

Nothing to Hide

Important!! This requires extra software from: https://github.com/compsocial/nothing-to-hide Nothing to Hide is a Chrome extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nothing to Hide",
  "version": "3.0.1",
  "permissions": [
    "tabs",
    "https://mail.google.com/*",
    "http://127.0.0.1:5000/"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "jquery-2.0.3.js",
        "dict.js",
        "run.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Vague-ify Options",
    "default_icon": "redact_16x16.png"
  },
  "web_accessible_resources": [
    "jquery-2.0.3.js",
    "dict.js",
    "run.js"
  ],
  "manifest_version": 2
}