The QR Extension

The QR Extension

The Google Chrome QR Extension. Generate offline QR Code with a simple click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "author": "The QR Extension",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "storage",
    "downloads"
  ],
  "manifest_version": 2,
  "offline_enabled": true,
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "96": "images/96.png",
    "128": "images/128.png",
    "256": "images/256.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_appTitle__"
  },
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.0"
}