Thingiverse Download All Button

Thingiverse Download All Button

This extension will put a button back on Thingiverse pages the download a .zip with all files. Created By: Coolshrimp Modz

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Thingiverse Download All Button",
  "short_name": "Thingiverse Download All Button",
  "icons": {
    "48": "zip-48.png",
    "128": "zip-128.png"
  },
  "description": "This extension will put a button back on Thingiverse pages the download a .zip with all files.  Created By: Coolshrimp Modz",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*.thingiverse.com/thing*"
      ],
      "js": [
        "jquery-2.1.0.min.js",
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}