Golinks 2

Golinks 2

Your private URL shortener.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Golinks 2",
  "description": "Your private URL shortener.",
  "version": "2.1.4",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "favicon",
    "history",
    "storage"
  ],
  "background": {
    "service_worker": "js/main.js"
  },
  "action": {
    "default_title": "Golinks",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "windows": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space",
        "linux": "Ctrl+Shift+Space",
        "chromeos": "Ctrl+Shift+Space"
      }
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}