URL Prefix

URL Prefix

A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.8.3",
  "author": "Piyush Ramuka",
  "manifest_version": 3,
  "name": "URL Prefix",
  "description": "A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links.",
  "permissions": [
    "storage"
  ],
  "omnibox": {
    "keyword": "go"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/urlprefix.png",
    "32": "images/urlprefix32.png",
    "48": "images/urlprefix48.png",
    "128": "images/urlprefix128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      }
    }
  }
}