Page capture screenshot tool-ThisShot

Page capture screenshot tool-ThisShot

The page snipping tool for screenshot/capture webpage in full or part.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "short_name": "ThisShot",
  "version": "1.0",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "__MSG_manifest_browser_action__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://addonx.net/thisshot"
      ],
      "js": [
        "libs/jquery-3.5.1.min.js",
        "libs/jspdf.min.js",
        "libs/markerjs2.js",
        "js/loader.js"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "matches": [
        "*://*/*"
      ],
      "exclude_globs": [
        "*//addonx.net/*"
      ],
      "js": [
        "libs/jquery-3.5.1.min.js",
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "bootstrap-5.2.3-dist/css/bootstrap.min.css",
        "bootstrap-5.2.3-dist/icons/bootstrap-icons.css",
        "bootstrap-5.2.3-dist/icons/fonts/bootstrap-icons.woff2",
        "bootstrap-5.2.3-dist/icons/fonts/bootstrap-icons.woff"
      ],
      "matches": [
        "https://addonx.net/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://addonx.net/*",
    "https://addonx.net/*"
  ],
  "homepage_url": "https://addonx.net/thisshot",
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}