QR Code Generator

QR Code Generator

QR Code Extension: A faster, more direct way to create and share QR codes, even better than short links.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q"
      }
    }
  },
  "content_scripts": [
    {
      "css": [
        "lightbox.css"
      ],
      "js": [
        "jquery.min.js",
        "qrlightbox.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'unsafe-eval' 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "31",
  "name": "__MSG_extName__",
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "<all_urls>"
  ],
  "short_name": "QR Code Gen",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.3",
  "web_accessible_resources": [
    "jquery.min.js",
    "qrlightbox.js",
    "i/save.png",
    "i/share.png",
    "i/close.png"
  ]
}