Lunabot - ChatGPT on any webpages

Lunabot - ChatGPT on any webpages

Help you translate, summarize, rewrite, grammar fix, chat with AI on any webpages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.7.1",
  "manifest_version": 3,
  "name": "__MSG_pkgName__",
  "description": "__MSG_pkgDescription__",
  "default_locale": "en",
  "homepage_url": "https://lunabot.ai",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "action": {},
  "icons": {
    "128": "assets/img/lunabot128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "mac": "Alt+E",
        "windows": "Alt+E",
        "chromeos": "Alt+E",
        "linux": "Alt+E"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*",
        "*.html",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "scripting",
    "webNavigation"
  ]
}