Quick Snip

Quick Snip

Browse web and capture tabs you like, easy and quick.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.7",
  "name": "Quick Snip",
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png"
  },
  "action": {
    "default_icon": "assets/icons/64.png",
    "default_popup": "/view/popup.html",
    "default_title": "Take a Screenshot"
  },
  "description": "Browse web and capture tabs you like, easy and quick.",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "utility/notification.js",
        "lib/customLib/urlValidator.js",
        "content/content_script.js"
      ],
      "css": [
        "styles/extraContent.css"
      ]
    }
  ],
  "background": {
    "service_worker": "mainServiceWorker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "newTab.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {
    "full_screenshot": {
      "suggested_key": {
        "windows": "Ctrl+Shift+1",
        "mac": "Command+Shift+1",
        "linux": "Ctrl+Shift+1"
      },
      "description": "captures full screenshot"
    },
    "region_screenshot": {
      "suggested_key": {
        "windows": "Ctrl+Shift+2",
        "mac": "Command+Shift+2",
        "linux": "Ctrl+Shift+2"
      },
      "description": "captures region screenshot"
    }
  },
  "chrome_url_overrides": {
    "newtab": "view/tabs/tabs.html"
  }
}