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": "1.2",
  "description": "右クリックメニューに「ChatGPTで検索」を追加するアドオンです。",
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "storage",
    "https://chatgpt.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7d98f876-6e75-4c9f-beac-4ff7cbb76b31}"
    }
  }
}