Url2QRCode

Url2QRCode

With this extension you can generate a QR Code relative to the active URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extname__",
  "short_name": "__MSG_extname__",
  "description": "__MSG_extdescr__",
  "version": "1.0",
  "default_locale": "it",
  "icons": {
    "16": "QRCode_16.png",
    "36": "QRCode_36.png",
    "48": "QRCode_48.png",
    "128": "QRCode_128.png"
  },
  "author": "Gabriele Callimaci ([email protected])",
  "browser_action": {
    "default_icon": "QRCode_16.png",
    "default_popup": "getQRCode.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.4.min.js",
        "jquery.qrcode-0.12.0.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "activeTab"
  ]
}