Thread Product Clipper

Thread Product Clipper

Clip pictures & product information from vendors' websites for use in Thread. Powered by Design Manager.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Thread Product Clipper",
  "description": "Clip pictures & product information from vendors' websites for use in Thread. Powered by Design Manager.",
  "version": "1.0.0",
  "background": {
    "service_worker": "bundledAssets/background-1.0.0.js"
  },
  "externally_connectable": {
    "matches": [
      "*://*.designmanager.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.designmanager.com/*"
      ],
      "css": [
        "bundledAssets/contentScript-1.0.0.css"
      ],
      "js": [
        "bundledAssets/contentScript-1.0.0.js"
      ]
    }
  ],
  "icons": {
    "16": "img/16x16.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": "img/48x48.png",
    "default_popup": "popup-1.0.0.html"
  },
  "host_permissions": [
    "https://*.designmanager.com/"
  ],
  "permissions": [
    "cookies",
    "storage",
    "tabs",
    "contextMenus"
  ]
}