Examine source code of TrueHeadlines

Inspect and view changes in TrueHeadlines 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": "TrueHeadlines",
  "version": "1.2",
  "description": "Rephrase news titles to provide clarity without clickbait.",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "favicon/favicon-16x16.png",
    "32": "favicon/favicon-32x32.png",
    "48": "favicon/favicon-48x48.png",
    "128": "favicon/favicon-128x128.png",
    "256": "favicon/favicon-192x192.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://news.google.com/*",
        "https://www.google.com/search?*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "favicon/favicon-16x16.png",
      "32": "favicon/favicon-32x32.png",
      "48": "favicon/favicon-48x48.png"
    }
  }
}