Copy Unicode URLs

Copy Unicode URLs

Copy Unicode URLs to clipboard without nasty percent-encodings or Punycode!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/ilyaigpetrov/copy-unicode-urls",
  "default_locale": "en",
  "version": "0.0.21",
  "icons": {
    "128": "icons/u-red-128.png"
  },
  "author": "[email protected]",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "clipboardWrite"
  ],
  "background": {
    "persistent": true,
    "page": "./bg.html"
  },
  "options_page": "./pages/options/index.html",
  "options_ui": {
    "chrome_style": true,
    "page": "./pages/options/index.html"
  },
  "browser_action": {
    "default_title": "__MSG_iconHint__",
    "default_icon": "./icons/u-red-128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+U"
      }
    }
  }
}