ChatGPT Folders

ChatGPT Folders

Organize & Search your ChatGPT chats. Color coded folders for better organization.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Folders",
  "version": "1.7.6",
  "description": "Organize & Search your ChatGPT chats. Color coded folders for better organization.",
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "tooltip.js",
        "content.js"
      ],
      "css": [
        "tooltip.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "add.png",
        "down.png",
        "trash.png",
        "magnifying-glass.png"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "ChatGPT Folders",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}