QR-Code. Send Url to Phone

QR-Code. Send Url to Phone

Need send URL to your phone faster? Generates a QR Code from the Page URL of the current tab with a single click

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_EXTENSION_NAME__",
  "short_name": "QR",
  "version": "0.0.8",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon24.png",
    "default_popup": "popup.html",
    "default_title": "QR-Code"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google.com; object-src 'self'",
  "permissions": [
    "idle",
    "tabs",
    "contextMenus",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ],
  "default_locale": "ru",
  "icons": {
    "16": "img/icon24.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  }
}