URL Shortener - USH.MX

URL Shortener - USH.MX

Acortador de URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URL Shortener - USH.MX",
  "description": "Acortador de URL",
  "version": "1",
  "background": {
    "page": "index.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "http://www.ush.mx/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.0.min.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Ush.mx",
    "default_popup": "index.html",
    "default_icon": "ush16.png"
  },
  "icons": {
    "16": "ush16.png",
    "48": "ush48.png"
  },
  "manifest_version": 2
}