QRify

QRify

This extension allows you to create QR code for selected link/text, Enabling sharing URL/Text to other devices

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QRify",
  "version": "0.1.8",
  "manifest_version": 2,
  "short_name": "QRify",
  "description": "This extension allows you to create QR code for selected link/text, Enabling sharing URL/Text to other devices",
  "default_locale": "en",
  "homepage_url": "https://github.com/DamandeepS/QRify",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "QRify",
    "default_popup": "./src/page_action/page_action.html"
  },
  "web_accessible_resources": [
    "js/qr-code.js",
    "src/page_action/page_action.html"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "tabs",
    "declarativeContent",
    "clipboardRead"
  ],
  "offline_enabled": true,
  "author": "Damandeep Singh <[email protected]>",
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": false
  }
}