zoriga

zoriga

URL Shortener

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "zoriga",
  "description": "URL Shortener",
  "version": "0.1.0",
  "author": "esllo",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "128": "/images/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "html/popup.html"
  },
  "options_page": "html/popup.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/zoriga.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*.js",
        "css/*.css",
        "images/icon128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "copy-current-page": {
      "suggested_key": "Alt+G",
      "description": "Copy Current Page URL"
    }
  }
}