URL Shortener Extension

URL Shortener Extension

Create short URLs directly out of Chrome. This extension needs a valid [https://github.com/pawy/url_shortener] installation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "URL Shortener Extension",
  "version": "2.0.1",
  "description": "Create short URLs directly out of Chrome. This extension needs a valid [https://github.com/pawy/url_shortener] installation",
  "page_action": {
    "default_icon": {
      "19": "icons/icon_016.png",
      "38": "icons/icon_038.png"
    },
    "default_title": "Shorten the URL",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "clipboardWrite",
    "storage"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon_016.png",
    "48": "icons/icon_048.png",
    "128": "icons/icon_128.png"
  },
  "homepage_url": "https://github.com/pawy/url_shortener"
}