Save to Collect

Save to Collect

Save content from across your apps and bring it together for your friends, your team, or just for yourself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save to Collect",
  "version": "1.5.5",
  "manifest_version": 3,
  "description": "Save content from across your apps and bring it together for your friends, your team, or just for yourself.",
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "webRequest",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "toggle-feature-save-page": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Ctrl+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      },
      "description": "Save current page to Collect"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "images/logo_border16.png",
    "32": "images/logo_border32.png",
    "48": "images/logo_border48.png",
    "128": "images/logo_border128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "notification.html",
        "onboarding.html",
        "*.js.map",
        "icon-128.png",
        "icon-34.png",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}