URC - URL Scanner

URC - URL Scanner

To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URC - URL Scanner",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "To experience a better way to sending links to your associates, this extension comes in handy. This is easy, simple and convenient!",
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "chrome://favicon/",
    "history"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery.popupoverlay.js",
        "js/jquery-qrcode.js",
        "js/inject.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "history": "history.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}