hive - Custom URL Shortener

hive - Custom URL Shortener

Shorten, Share, Manage. Google Chrome Extension for URL Shortener at hive.am

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Its Hive, Inc",
  "background": {
    "page": "background/background.html"
  },
  "browser_action": {
    "default_icon": "icons/icon16.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/oncopy.js"
      ],
      "matches": [
        "http://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "homepage_url": "https://hiveam.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAtUeZkvgqxMJl96/N7coSi/uctBMFX9H3GFgI/AqAQXXeI+N9ppEJeE8aYCn9REEDpl1qzD65jVN987W0oT8Xr4TJUlFPEJdWI28W5a4zxOqPvnzOtlABTYAIp6DV/RLAUJPAPAcqSr/Fqsx+VtoogB4JiC5yCf+aXO1MwtUFtQIDAQAB",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "options_page": "options/options.html",
  "permissions": [
    "contextMenus",
    "https://hiveam.com/api",
    "tabs",
    "notifications",
    "clipboardWrite",
    "clipboardRead"
  ],
  "short_name": "hive",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.1.0",
  "web_accessible_resources": [
    "icons/icon48.png",
    "icons/icon48_red.png"
  ]
}