Examine source code of Simplify Docs

Inspect and view changes in Simplify Docs 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",
  "name": "Simplify Docs",
  "version": "1.1.1",
  "manifest_version": 3,
  "description": "Makes Google Docs a little simplier",
  "homepage_url": "https://simpl.fyi",
  "icons": {
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'"
  }
}