PowerChatGPT -Summarize,translate on any site

PowerChatGPT -Summarize,translate on any site

Translate, Rephrase, summarize, or explain text on any website and no copy-pasting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PowerChatGPT -Summarize,translate on any site",
  "version": "1.0.1",
  "description": "Translate, Rephrase, summarize, or explain text on any website and no copy-pasting",
  "short_name": "PowerChatGPT",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import-content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "management",
    "contextMenus"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/icon_16_normal.png",
      "24": "assets/icons/icon_32_normal.png",
      "32": "assets/icons/icon_32_normal.png"
    },
    "default_title": "PowerChatGPT.AI"
  },
  "icons": {
    "16": "assets/icons/icon_16_normal.png",
    "32": "assets/icons/icon_32_normal.png",
    "48": "assets/icons/icon_48_normal.png",
    "128": "assets/icons/icon_128_normal.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+J",
        "windows": "Alt+J",
        "linux": "Alt+J",
        "mac": "Command+J"
      },
      "description": "Active PowerChatGPT.AI"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>",
        "https://*.openai.com/*"
      ]
    }
  ]
}