QR URL

QR URL

Show current web URL as a QRCode so you may scan with your mobile device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QR URL",
  "version": "3.0",
  "description": "Show current web URL as a QRCode so you may scan with your mobile device.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://chart.apis.google.com/",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "default_icon": "icon.png",
    "persistent": false,
    "scripts": [
      "main.js"
    ]
  },
  "icons": {
    "16": "icon.png"
  },
  "manifest_version": 2
}