Screen Grab Extension

Screen Grab Extension

It's a tool where you can take screenshot any webpage anytime from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Screen Grab Extension",
  "description": "It's a tool where you can take screenshot any webpage anytime from your browser.",
  "homepage_url": "https://www.screengrabextension.com/",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "declarativeContent",
    "https://www.bex-digital.com/screengrab/*",
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "version": "1.3",
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/bd-16.png",
      "32": "images/bd-32.png",
      "48": "images/bd-48.png",
      "128": "images/bd-128.png"
    }
  },
  "icons": {
    "16": "images/bd-16.png",
    "32": "images/bd-32.png",
    "48": "images/bd-48.png",
    "128": "images/bd-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "landing.html"
  },
  "web_accessible_resources": [
    "images/*.*"
  ],
  "content_security_policy": "script-src 'self' https://www.bex-digital.com/screengrab/custom.js https://www.bex-digital.com/screengrab/background.js; object-src 'self' ;style-src 'self' 'unsafe-inline' *;media-src *;"
}