Examine source code of QRL-Share

Inspect and view changes in QRL-Share source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "QRL-Share",
  "version": "1.1.5",
  "description": "Quicly share links among devices with qr codes.",
  "developer": {
    "name": "Jishnu Biswas",
    "url": "https://github.com/BiswasJishnu/QRL-Share"
  },
  "icons": {
    "96": "Icons/Extension-Icon/icon96px.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "QRL-Share.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "page_action": {
    "browser_style": true,
    "show_matches": [
      "<all_urls>"
    ],
    "default_icon": "Icons/Display-Icon/display-icon96px.png",
    "default_title": "QRL-Share",
    "default_popup": "Extension/extension.html"
  }
}