6bot

6bot

Automated convo starters and filtering for 6obcy.pl

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "6bot",
  "version": "3.2.3",
  "description": "Automated convo starters and filtering for 6obcy.pl",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://6obcy.org/rozmowa",
        "https://6obcy.org/?mobileOldStyle"
      ],
      "js": [
        "lib/mobile.js",
        "lib/data.js",
        "lib/adBlocker.js",
        "lib/settings.js",
        "lib/ad.js",
        "lib/interface.js",
        "lib/workarounds.js",
        "lib/notif.js",
        "lib/convo.js",
        "lib/msgAnalysis.js",
        "lib/answers.js",
        "lib/verification.js",
        "lib/antispam.js",
        "lib/captchaInputWatcher.js",
        "lib/obcyInfoBox.js",
        "lib/nameRecognition.js",
        "lib/captcha.js",
        "lib/metrics.js",
        "lib/ux.js",
        "lib/history.js",
        "events/captchaAppeared.js",
        "events/captchaError.js",
        "events/convoStarted.js",
        "events/convoEnded.js",
        "events/messageDuplicate.js",
        "conversation.js",
        "main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/main.js"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "media/notif.mp3",
        "data/antispam.json"
      ],
      "matches": [
        "https://6obcy.org/*"
      ],
      "use_dynamic_url": true
    }
  ]
}