CmdK

CmdK

A browser extension that allows to create shortlinks with the word 'go' followed by the shortened link, go/links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CmdK",
  "description": "A browser extension that allows to create shortlinks with the word 'go' followed by the shortened link, go/links",
  "version": "1.0.2",
  "action": {
    "default_popup": "index.html",
    "default_icon": "./images/logo.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://go/*",
    "https://*.cmdk.ai/*"
  ],
  "background": {
    "service_worker": "./js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.cmdk.ai/*"
      ],
      "js": [
        "./js/data_injector.js"
      ],
      "run_at": "document_start"
    }
  ]
}