Examine source code of ChatGPTに操作追加(エンジニア向け)

Inspect and view changes in ChatGPTに操作追加(エンジニア向け) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "ChatGPTに操作追加(エンジニア向け)",
  "version": "2.2",
  "description": "ChatGPTに操作を追加するエンジニア向けアドオンです。ソースコードを生成する補助機能を搭載しています。",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{843d59ba-fb98-407f-8cc9-18d0cdb90e1f}"
    }
  }
}