EASY Webpage Capture & Screenshot Tool - WARP

EASY Webpage Capture & Screenshot Tool - WARP

Free Webpage capture & Screenshots. Even if it is difficult to explain with text, you can immediately tell with a video.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_title__",
  "description": "__MSG_app_description__",
  "version": "0.4.7",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": "img/icon-64x64.png",
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "js/inboxsdk.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "media.html",
        "app.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16x16.png",
    "24": "img/icon-24x24.png",
    "32": "img/icon-32x32.png",
    "64": "img/icon-64x64.png",
    "128": "img/icon-128x128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}