Do. Fancy and easy AI inside your browser.

Do. Fancy and easy AI inside your browser.

An AI Content assistant without all the bells and whistles. Use your own OpenAI API key, or for free and ad supported.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Do. Fancy and easy AI inside your browser.",
  "version": "1.0.2",
  "description": "An AI Content assistant without all the bells and whistles. Use your own OpenAI API key, or for free and ad supported.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "16.png",
      "48": "48.png",
      "128": "128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}