Examine source code of Stop Donald Honk

Inspect and view changes in Stop Donald Honk 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
{
  "name": "Stop Donald Honk",
  "version": "0.1",
  "description": "Replace images of Trump with cute geese",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "jquery.min.js",
        "assets/js/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "https://shrouded-meadow-42196.herokuapp.com/*"
  ],
  "background": {
    "scripts": [
      "assets/js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "assets/images/icon.png",
    "32": "assets/images/icon.png",
    "48": "assets/images/icon.png",
    "128": "assets/images/icon.png"
  }
}