Right Click URL Shortener

Right Click URL Shortener

Right click and get shortened URLs for the page you're on, links, images & video/audio clips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Right Click URL Shortener",
  "version": "2",
  "manifest_version": 2,
  "description": "Right click and get shortened URLs for the page you're on, links, images & video/audio clips.",
  "icons": {
    "16": "img/Internet-url-icon-16px.png",
    "48": "img/Internet-url-icon-48px.png",
    "128": "img/Internet-url-icon-128px.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "contextMenus",
    "notifications",
    "http://gewd.co/*"
  ],
  "web_accessible_resources": [
    "css/notification.css",
    "html/background.html",
    "html/notification.html",
    "img/Internet-url-icon-16px.png",
    "img/Internet-url-icon-48px.png",
    "img/Internet-url-icon-64px.png",
    "img/Internet-url-icon-128px.png",
    "js/background.js",
    "js/notification.js"
  ]
}