mub.me URL shortener

mub.me URL shortener

Easily shorten links with a click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "mub.me URL shortener",
  "version": "1.2",
  "description": "Easily shorten links with a click of a button!",
  "manifest_version": 2,
  "offline_enabled": false,
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "assets/images/icon16.png",
    "default_title": "Click to shorten the current page link"
  },
  "permissions": [
    "https://mub.me/api",
    "http://mub.me/api",
    "tabs",
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "128": "assets/images/icon128.png"
  }
}