scrsht screenshot tool

scrsht screenshot tool

Simple and convenient screenshot tool. Select an area, edit your screenshot and upload it to the server.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "worker_wrapper.js"
  },
  "action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "__MSG_screenshotplugin_default_title__"
  },
  "default_locale": "en",
  "description": "__MSG_screenshotplugin_short_description__",
  "icons": {
    "19": "img/icon19.png",
    "24": "img/icon24.png",
    "32": "img/icon32.png",
    "38": "img/icon38.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_screenshotplugin_name__",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "notifications",
    "clipboardWrite",
    "downloads",
    "cookies",
    "contextMenus"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.12",
  "host_permissions": [
    "https://*.scrsht.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "/libs/jquery-3.2.1.min.js",
        "js/event.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "toolbar_res/*",
        "libs/*",
        "js/*",
        "html/*",
        "img/*",
        "_locales/*",
        "css/*",
        "libs/jquery-3.2.1.min.js",
        "js/event.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}