Chilp.it URL Shortener

Chilp.it URL Shortener

This extension helps to shrink your large URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chilp.it URL Shortener",
  "description": "This extension helps to shrink your large URLs.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "chilpIcon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "http://chilp.it/",
    "contextMenus",
    "clipboardWrite"
  ],
  "icons": {
    "16": "chilpIcon16.png",
    "128": "chilpIcon128.png"
  },
  "commands": {
    "copyPageShortlinkToClipboard": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "mac": "Alt+Shift+C"
      },
      "description": "shorten the current page url and copy the shortlink to the clipboard"
    }
  }
}