DigitalPage Web Clipper

DigitalPage Web Clipper

Another quick and easy way to record your pages! Use the new DigitalPage Web Clipper to conveniently record desired information.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DigitalPage Web Clipper",
  "description": "__MSG_description__",
  "version": "1.2.1",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "24": "assets/icons/icon24.png",
      "32": "assets/icons/icon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/index.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/*.png"
      ],
      "matches": [],
      "extension_ids": []
    },
    {
      "resources": [
        "assets/*.svg",
        "page/index.html",
        "page/index.*.js",
        "page/index.*.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "pageCapture"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.digitalpage.me/*"
    ]
  }
}