Show QRCode

Show QRCode

Displays the active url (or any selected link or text) as a qrcode for easy sharing between devices with a qrcode scanner like mobile/smart phones and tablets. Also allows saving and copying to the clipboard for pasting in other programms

Additional files are visible only to premium users

manifest.json


{
  "author": "igorlogius",
  "homepage_url": "https://github.com/igorlogius",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F10"
      }
    }
  },
  "description": "Displays the active url (or any selected link or text) as a qrcode for easy sharing between devices with a qrcode scanner like mobile/smart phones and tablets. Also allows saving and copying to the clipboard for pasting in other programms",
  "icons": {
    "256": "icon.png"
  },
  "manifest_version": 2,
  "name": "Show QRcode",
  "browser_action": {
    "default_area": "navbar",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "menus"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "version": "1.8.32",
  "browser_specific_settings": {
    "gecko": {
      "id": "{9aeca40d-0ccc-400e-9054-464403277ce1}"
    }
  }
}