Save to Make the Dot

Save to Make the Dot

Save selected images from any website to create your fashion moodboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Save to Make the Dot",
  "description": "Save selected images from any website to create your fashion moodboard",
  "version": "1.202",
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "static/css/content.css"
      ],
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/css/content.css",
        "media/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "Dot.png",
    "32": "Dot.png",
    "64": "Dot.png",
    "128": "Dot.png"
  },
  "action": {}
}