QR Code Safety

QR Code Safety

Generates QR Codes for URL, vCards, Image, phone numbers and many more. Very useful to copy a message, website url to smartphone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "box.css"
      ],
      "js": [
        "jquery.min.js",
        "qrcode.js",
        "box.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Generates QR Codes for URL, vCards, Image, phone numbers and many more. Very useful to copy a message, website url to smartphone.",
  "icons": {
    "16": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html",
    "default_title": "QR Code Safety"
  },
  "manifest_version": 2,
  "name": "QR Code Safety",
  "web_accessible_resources": [
    "/images/*.png"
  ],
  "permissions": [
    "background",
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.0.3"
}