Examine source code of ChatGPT Bookmark Folders

Inspect and view changes in ChatGPT Bookmark Folders 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Bookmark Folders",
  "version": "1.1",
  "description": "Organize and bookmark your ChatGPT conversations in folders",
  "icons": {
    "128": "icons/ChatgptBookmarksIcon.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/ChatgptBookmarksIcon.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://chatgpt.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ]
}