SimplyPrint

Instantly 3D print or slice files from Thingiverse and Printables - anywhere, anytime, from any device, wirelessly. This extension adds a "Send to SimplyPrint" button to the 3D model sharing sites, Thingiverse and Printables.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "SimplyPrint",
  "description": "Send files directly to SimplyPrint",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.thingiverse.com/thing:*"
      ],
      "js": [
        "content_scripts/thingiverse.js"
      ]
    },
    {
      "matches": [
        "https://*.printables.com/*"
      ],
      "js": [
        "content_scripts/printables.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/icon_black.svg"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "version": "1.3"
}