TacticalBucket.com One-Click Installer

TacticalBucket.com One-Click Installer

This extension simplifies the process to sync your TacticalBucket data into TacticalArbitrage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TacticalBucket.com One-Click Installer",
  "description": "This extension simplifies the process to sync your TacticalBucket data into TacticalArbitrage",
  "version": "0.55",
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_title": "TacticalBucket.com One-Click Installer",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.tacticalbucket.com/*",
        "*://tacticalarbitrage.threecolts.com/*",
        "*://www.tacticalarbitrage.threecolts.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/bootstrap.js",
        "js/jquery-ui.js",
        "js/bootstrap4-toggle.min.js",
        "js/select2.min.js",
        "js/utils.js",
        "js/inject.js"
      ],
      "css": [
        "css/jquery-ui.css",
        "css/select2.min.css",
        "css/custom.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://www.tacticalbucket.com/*",
    "*://tacticalarbitrage.threecolts.com/*",
    "*://www.tacticalarbitrage.threecolts.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "144": "images/icon-144.png",
    "310": "images/icon-310.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}