Lightshot Pager

Lightshot Pager

You can turn lightshot service pages!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lightshot Pager",
  "version": "1.1",
  "icons": {
    "128": "128.png"
  },
  "permissions": [
    "unlimitedStorage",
    "https://prnt.sc/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://prnt.sc/*"
      ],
      "js": [
        "js/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "description": "You can turn lightshot service pages!",
  "manifest_version": 2
}