CutUrl

CutUrl

Chrome Extension - Use http://goo.gl/ to shorten your URLs in a Shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CutUrl",
  "short_name": "CutUrl",
  "description": "Chrome Extension - Use http://goo.gl/ to shorten your URLs in a Shortcut.",
  "version": "1.1.0",
  "background": {
    "persistent": false,
    "scripts": [
      "assets/js/jquery.js",
      "assets/js/background.js"
    ]
  },
  "permissions": [
    "*://*.googleapis.com/*",
    "notifications",
    "tabs"
  ],
  "icons": {
    "16": "assets/img/ico16.png",
    "48": "assets/img/ico48.png",
    "128": "assets/img/ico128.png"
  },
  "homepage_url": "http://github.com/idnan",
  "commands": {
    "toggle-pin": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "windows": "Alt+Shift+C",
        "mac": "Alt+Shift+C",
        "chromeos": "Alt+Shift+C",
        "linux": "Alt+Shift+C"
      },
      "description": "Short your urls"
    }
  }
}