Bitly URL Shortner

Bitly URL Shortner

Bitly service to convert long URLs or Links of websites to short.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Bitly URL Shortner",
  "short_name": "Bitly URL Shortner",
  "version": "1.4.1",
  "description": "Bitly service to convert long URLs or Links of websites to short.",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Bitly URL Shortner",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.9.1.js",
        "js/common.js",
        "js/db.js",
        "js/jquery.utils.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}