Bot Ticket

Bot Ticket

Automatização para busca de ingressos

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bot Ticket",
  "version": "3.4.0",
  "description": "Automatização para busca de ingressos",
  "homepage_url": "https://explodi.com.br",
  "manifest_version": 3,
  "action": {
    "default_title": "Automatização para busca de ingressos",
    "default_icon": "img/ico.png",
    "default_popup": "app.html"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/run.js"
      ],
      "run_at": "document_end",
      "css": [
        "css/style.css",
        "css/font-awesome.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "img/ico.png",
    "128": "img/ico.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "css/*",
        "fonts/*",
        "app.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}