Scrappi

Scrappi

Scrappi: Go Beyond Bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scrappi",
  "version": "1.7.3",
  "minimum_chrome_version": "90",
  "icons": {
    "16": "assets/icons/main/16.png",
    "32": "assets/icons/main/32.png",
    "48": "assets/icons/main/48.png"
  },
  "description": "Scrappi: Go Beyond Bookmarks.",
  "homepage_url": "https://scrappi.com",
  "short_name": "Scrappi",
  "permissions": [
    "scripting",
    "tabs",
    "desktopCapture",
    "activeTab",
    "storage",
    "notifications",
    "contextMenus",
    "webNavigation"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://static.userback.io/widget/v1.js'; object-src 'self'"
  },
  "host_permissions": [
    "https://www.google.com/",
    "*://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/main/16.png",
      "32": "assets/icons/main/32.png",
      "48": "assets/icons/main/48.png"
    },
    "default_title": "Scrappi"
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.bundle.js"
      ],
      "match_about_blank": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "webcam.html",
        "assets/*",
        "webcamRecorder.html",
        "screenRecorder.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}