Quick Linker

Quickly navigate to regularly accessed websites using keyword shortcuts.
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": "Quick Linker",
  "version": "2.3.3",
  "description": "Quickly navigate to regularly accessed websites using keyword shortcuts.",
  "icons": {
    "16": "icons/rounded/icon16.png",
    "32": "icons/rounded/icon32.png",
    "48": "icons/rounded/icon48.png",
    "64": "icons/rounded/icon64.png",
    "128": "icons/rounded/icon128.png",
    "256": "icons/rounded/icon256.png",
    "512": "icons/rounded/icon512.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "omnibox": {
    "keyword": "gl"
  },
  "minimum_chrome_version": "102",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/rounded/icon16.png",
      "32": "icons/rounded/icon32.png",
      "48": "icons/rounded/icon48.png",
      "64": "icons/rounded/icon64.png",
      "128": "icons/rounded/icon128.png",
      "256": "icons/rounded/icon256.png",
      "512": "icons/rounded/icon512.png"
    }
  },
  "options_page": "options/options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "search/search.html",
        "search/search.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}