Pensieve-Free web reading and translation assistant powered by ChatGPT.

Pensieve-Free web reading and translation assistant powered by ChatGPT.

Use GPT 4 to efficiently read professional websites with an expert perspective. Supports various news, research, legal, and educational websites, and is compatible with threads, Twitter, and YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_extDescription__",
  "version": "1.0.6",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "zh_CN",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "property-fetcher.js"
      ],
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "logo.png",
        "loading.gif"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}