Source Capture

Source Capture

Clip and save products from around the web to your Source project.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Source Capture",
  "description": "Clip and save products from around the web to your Source project.",
  "version": "1.0.3",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://auth.api.tothesource.com/*",
    "https://clipper.api.tothesource.com/*",
    "https://app.tothesource.com/*"
  ],
  "icons": {
    "34": "icon-34.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "options.html",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}