ChatGPT Folders

ChatGPT Folders

Organize your ChatGPT chats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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",
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "tooltip.js",
        "content.js"
      ],
      "css": [
        "tooltip.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "add.png",
    "down.png",
    "trash.png",
    "magnifying-glass.png"
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{48de56fe-c9dd-4bf9-a822-e0ad31965528}"
    }
  }
}