FragmentQR

FragmentQR

QR codes that can highlight any text in yellow when scanned.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Yonah Aviv",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background_script.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "32": "img/icon-32.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png",
      "512": "img/icon-512.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_open_popup__"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "__MSG_open_popup__",
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q"
      }
    },
    "copy_link": {
      "description": "__MSG_copy_link__",
      "suggested_key": {
        "default": "Alt+Shift+L",
        "mac": "Alt+Shift+L"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "https://*/*, http://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png",
    "512": "img/icon-512.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "80",
  "name": "__MSG_extension_name__",
  "offline_enabled": true,
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "clipboardRead",
    "clipboardWrite"
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "short_name": "__MSG_short_name__",
  "version": "1.8.1"
}