Put.io files to command line

Put.io files to command line

Gets list of files in current put.io folder and generate command line commands to download all of them. Source code is avaialble…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Put.io files to command line",
  "version": "1.12.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://put.io/*",
        "http://put.io/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "target/inject.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "target/generate.js",
      "target/background.js"
    ]
  },
  "page_action": {
    "default_icon": "images/icon-19.png",
    "default_popup": "popup.html",
    "scripts": [
      "target/popup.js"
    ]
  },
  "permissions": [
    "tabs",
    "clipboardWrite"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "options_page": "options.html"
}