ChatGPT Privacy Slider

ChatGPT Privacy Slider

Enhance your privacy on chat.openai.com by easily hiding/unhiding chat titles in the sidebar. Perfect for public or shared spaces.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Privacy Slider",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "description": "Enhance your privacy on chat.openai.com by easily hiding/unhiding chat titles in the sidebar. Perfect for public or shared spaces.",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "script/content.js"
      ]
    }
  ]
}