Screenshot Tool with Marks | ScreenMark

Screenshot Tool with Marks | ScreenMark

Take a screenshot, add marks and annotations, and share it. Only the visible page. The easiest screen capture tool in the store!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentHotkeys.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "./options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}