Shortlink

Shortlink

Create personal, easy to remember shortlinks for hard to remember URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shortlink",
  "version": "0.0.7",
  "manifest_version": 2,
  "description": "Create personal, easy to remember shortlinks for hard to remember URLs.",
  "homepage_url": "https://shortlinkapp.com",
  "icons": {
    "16": "icons/shortlink_logo_solid_16.png",
    "32": "icons/shortlink_logo_transparent_32.png",
    "48": "icons/shortlink_logo_transparent_48.png",
    "128": "icons/shortlink_logo_transparent_128.png"
  },
  "background": {
    "scripts": [
      "src/background.min.js"
    ],
    "persistent": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+D",
        "windows": "Ctrl+Shift+S"
      }
    }
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/shortlink_logo_solid_48.png"
    },
    "default_title": "Shortlink",
    "default_popup": "src/popup.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "*://m/*"
  ],
  "web_accessible_resources": [
    "src/popup.html",
    "src/home.html",
    "src/help.html"
  ],
  "content_security_policy": "script-src https://cdn.paddle.com 'self' https://www.google-analytics.com; object-src 'self'"
}