Examine source code of Tactical Misuse Manifesto

Inspect and view changes in Tactical Misuse Manifesto source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tactical Misuse Manifesto",
  "version": "1.0",
  "description": "An interactive artwork aimed at teaching you how to disrupt the exploitative algorithms and dark patterns of surveillance capitalism",
  "icons": {
    "64": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.google.com/*",
        "*://*.youtube.com/*",
        "*://*.facebook.com/*",
        "*://*.instagram.com/*",
        "*://*.bing.com/*",
        "*://*.twitter.com/*",
        "*://*.x.com/*",
        "*://*.quora.com/*"
      ],
      "js": [
        "manifesto.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png"
  }
}