Single Upload Chrome Extension

Single Upload Chrome Extension

Single Upload All in One.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Anx Faxee",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Single Upload All In One",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js"
      ],
      "matches": [
        "*://*.singleupload.com/*"
      ]
    },
    {
      "matches": [
        "*://*.teepublic.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "teepublic.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.spreadshirt.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "spreadshirt.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.spreadshirt.de/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "spreadshirt-de.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.redbubble.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "redbubble.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.zazzle.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "zazzle.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "js/Bot.js",
        "js/commonFunctions.js",
        "merch.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "description": "Single Upload All in One.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Single Upload Chrome Extension",
  "permissions": [
    "https://singleupload.com/",
    "tabs",
    "storage",
    "debugger",
    "*://*.teepublic.com/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.4.9"
}