QRL

QRL

This simple yet highly customizable add-on converts the current URL to a QR code displayed in a popup from an icon in the toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "QRL",
  "short_name": "QRL",
  "description": "This simple yet highly customizable add-on converts the current URL to a QR code displayed in a popup from an icon in the toolbar.",
  "version": "2.1.3",
  "author": "Ariel Nemtzov",
  "browser_action": {
    "default_title": "QRL",
    "default_icon": "icon64.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "selection.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png"
  },
  "options_page": "options.html",
  "default_locale": "en"
}