Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PinFold: ChatGPT Folder and Pins", "version": "1.2", "description": "Pin and organize your ChatGPT conversations into folders for a clutter-free experience", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "assets\/logos\/logo-16.png", "48": "assets\/logos\/logo-48.png", "128": "assets\/logos\/logo-128.png" }, "action": { "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "ExtPay.js", "content.js", "storage.js", "pins.js", "createFolders.js", "folders.js", "addToFolder.js", "styles.js", "editFolder.js" ], "css": [ "folders.css" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/chatgpt.com\/*" ], "resources": [ "assets\/add.png", "assets\/pin.png", "assets\/folder.png", "assets\/delete.png", "assets\/edit.png" ] } ] }