Snap Marker

Snap Marker

Mark, capture, download!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Snap Marker",
  "description": "Mark, capture, download!",
  "version": "0.0.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "action": {},
  "permissions": [
    "scripting",
    "contextMenus",
    "activeTab",
    "downloads"
  ]
}