Examine source code of SubSync

Inspect and view changes in SubSync 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": "SubSync",
  "version": "1.0.0",
  "description": "Manage, track, and control all your subscriptions easily with SubSync. Save smart and stay informed!",
  "manifest_version": 3,
  "author": "Idris Lawal",
  "action": {
    "default_popup": "pages/index.html",
    "default_title": "Subscription Manager"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}