Pwee URL Shortener

Pwee URL Shortener

Simple, Stylish and Powerful way to shorten any URL!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "html/background.html"
  },
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Simple, Stylish and Powerful way to shorten any URL!",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "manifest_version": 2,
  "name": "Pwee URL Shortener",
  "permissions": [
    "tabs",
    "clipboardWrite",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.0",
  "web_accessible_resources": [
    "img/logo.png",
    "img/pwee.png",
    "img/close.png"
  ]
}