JotUrl

JotUrl

JotUrl Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "JotUrl",
  "description": "JotUrl Chrome Extension",
  "version": "2.0.2",
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "180": "img/icon180.png",
    "256": "img/icon256.png"
  },
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png",
      "180": "img/icon180.png",
      "256": "img/icon256.png"
    },
    "default_popup": "popup.html",
    "default_title": "Jot this page URL"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "offscreen",
    "activeTab",
    "tabs",
    "storage",
    "contextMenus",
    "clipboardWrite"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+R",
        "windows": "Alt+R",
        "mac": "MacCtrl+R",
        "chromeos": "Alt+R",
        "linux": "Alt+R"
      }
    }
  },
  "externally_connectable": {
    "matches": [
      "https://*.joturl.com/*"
    ]
  }
}