Google Surveillance Detector

Google Surveillance Detector

The Google Surveillance Detector shows you when Google is monitoring you online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Surveillance Detector",
  "manifest_version": 2,
  "description": "The Google Surveillance Detector shows you when Google is monitoring you online.",
  "version": "2.3",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "24": "images/icon_24.png",
      "32": "images/icon_32.png"
    },
    "default_title": "Google Surveillance Detector",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "event_page/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content_script/styles.css"
      ],
      "js": [
        "content_script/main.js"
      ],
      "run_at": "document_idle"
    }
  ]
}