Examine source code of GPTOrganizer

Inspect and view changes in GPTOrganizer 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": 3,
  "name": "GPTOrganizer",
  "version": "1.1",
  "description": "Enhance your ChatGPT experience, manage chats in folders, save messages, pin messages, and more",
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/gptorganizerlogo16.png",
      "48": "icons/gptorganizerlogo48.png",
      "128": "icons/gptorganizerlogo128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "icons": {
    "16": "icons/gptorganizerlogo16.png",
    "48": "icons/gptorganizerlogo48.png",
    "128": "icons/gptorganizerlogo128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{3ea655cd-d55f-4a95-b062-124518b90036}"
    }
  }
}