Examine source code of Stop Fake Extension

Inspect and view changes in Stop Fake Extension 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
{
  "manifest_version": 2,
  "name": "Stop Fake Extension",
  "version": "1.0.4",
  "author": "Jan Poul",
  "homepage_url": "https://stopfake.poul.cz/",
  "description": "Rozšíření upozorní na stránky, které mohou obsahovat sporný obsah (dezinformace, polopravdy fakenews)",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png"
    },
    "default_title": "Stop Fake Extension",
    "default_popup": "popup/about.html"
  },
  "permissions": [
    "https://stopfake.poul.cz/extension.json",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}