Who Targets Me

Who Targets Me

Big tech allows campaigns to profile and target voters, increasing polarization and mistrust in our democracies. They won't behave more responsibly without public pressure and transparency. Install Who Targets Me to add your voice!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.9.1",
  "name": "__MSG_appName__",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "wtm_logo_128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://facebook.com/*",
    "*://*.facebook.com/*",
    "*://whotargets.me/*",
    "*://*.whotargets.me/*",
    "*://localhost/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://facebook.com/*",
        "*://*.facebook.com/*",
        "*://whotargets.me/*",
        "*://*.whotargets.me/*",
        "*://localhost/*"
      ],
      "js": [
        "daemon/index.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "daemon/background.js"
    ]
  },
  "icons": {
    "128": "wtm_logo_128.png"
  },
  "web_accessible_resources": [
    "daemon/overload.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{93eff197-ac99-4d2f-bd2a-6484572f1af4}"
    }
  }
}