Greenlane AI Rewriter

Greenlane AI Rewriter

Adds a robot to web page form fields, allowing you to select text and automatically rewrite it using your OpenAI API account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Greenlane AI Rewriter",
  "version": "0.8.0",
  "description": "Adds a robot to web page form fields, allowing you to select text and automatically rewrite it using your OpenAI API account",
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "64": "icons/64.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png",
      "64": "icons/64.png"
    },
    "default_title": "Greenlane AI Rewriter",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://api.openai.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "background.js"
      ],
      "css": [
        "botty.css"
      ]
    }
  ]
}