simple put.io

simple put.io

Send download links directly to Put.io.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "simple put.io",
  "description": "Send download links directly to Put.io.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "assets/images/icon-16.png",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "assets/images/icon-16.png",
    "19": "assets/images/icon-19.png",
    "48": "assets/images/icon-48.png",
    "128": "assets/images/icon-128.png"
  },
  "permissions": [
    "identity",
    "storage",
    "https://api.put.io/*",
    "contextMenus",
    "downloads",
    "background",
    "notifications",
    "clipboardWrite",
    "downloads",
    "alarms"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "assets/css/*",
    "assets/js/*",
    "assets/fonts/*"
  ]
}