Gather Web Clipper

Gather Web Clipper

Save FF&E and material selections 4x faster than copy-pasting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Save FF&E and material selections 4x faster than copy-pasting.",
  "version": "5.1.1",
  "manifest_version": 3,
  "name": "Gather Web Clipper",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "icon48.png",
    "default_title": "Gather Web Clipper",
    "name": "Gather Web Clipper"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "content.styles.css",
        "image-placeholder.svg",
        "icon-min.svg",
        "icon-close.svg",
        "icon-setting-clicked.svg",
        "icon-setting-unclicked.svg",
        "move-to-left-icon.svg",
        "move-to-right-icon.svg",
        "icon-back.svg",
        "icon-pdf.svg",
        "icon-paperclip.svg",
        "grippy.png",
        "gather-logo.svg",
        "default-image.png",
        "icon-delete.svg",
        "check-icon.svg",
        "clip-icon.svg",
        "add-icon.svg",
        "selected-icon.svg",
        "arrow-drop-down-circle.svg",
        "icon-menu.svg",
        "icon-menu-redirect.svg",
        "icon-menu-close.svg",
        "icon-menu-setting.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}