Bito AI - Use ChatGPT to 100x dev work

Bito AI - Use ChatGPT to 100x dev work

We use GPT-4, but Bito is free to use and no API key is needed. Save an hour a day

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bito AI - Use ChatGPT to 100x dev work",
  "description": "We use GPT-4, but Bito is free to use and no API key is needed. Save an hour a day",
  "version": "3.3",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "environment.js",
        "content-script.js",
        "popup.js",
        "token_track.js",
        "login.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "images/Explainer.png",
    "48": "images/Explainer.png",
    "128": "images/Explainer.png"
  }
}