Examine source code of Thrive GoLinks

Inspect and view changes in Thrive GoLinks 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,
  "version": "1.2",
  "name": "Thrive GoLinks",
  "description": "Thrive GoLinks",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png"
  },
  "host_permissions": [
    "*://go/*"
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "declarative_net_request/1.json"
      }
    ]
  },
  "omnibox": {
    "keyword": "go/"
  },
  "background": {
    "service_worker": "background/service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "web_accessible_resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}