Examine source code of DIDASKO BOT

Inspect and view changes in DIDASKO BOT source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DIDASKO BOT",
  "description": "Riposte istantanee ai Moduli 1-6, Da Antonio Caprio [v6]",
  "author": "Antonio Caprio",
  "version": "0.9.6",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://didasko.eipass.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-script.js"
      ],
      "css": [
        "incognito.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Modules/pool.json"
      ],
      "matches": [
        "https://didasko.eipass.com/*"
      ]
    }
  ]
}