Thingiverse STL Downloader

Thingiverse STL Downloader

Download STLs from Thingiverse -- without the ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Thingiverse STL Downloader",
  "description": "Download STLs from Thingiverse -- without the ads.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contextmonitor.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/active--16.png",
      "32": "/images/active--32.png",
      "48": "/images/active--48.png",
      "128": "/images/active--128.png"
    }
  },
  "icons": {
    "16": "/images/active--16.png",
    "32": "/images/active--32.png",
    "48": "/images/active--48.png",
    "128": "/images/active--128.png"
  }
}