Inspect and view changes in ThinkGPT: ChatGPT, Claude & Deepseek Bookmarks Message keeper 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": "ThinkGPT: ChatGPT, Claude & Deepseek Bookmarks Message keeper",
"version": "1.8.3",
"description": "Save and manage your favorite ChatGPT, Claude, and Deepseek conversations",
"permissions": [
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icons/*",
"tutorial.gif",
"styles/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"components/*"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"https://chatgpt.com/*",
"https://*.openai.com/*",
"https://chat.openai.com/*",
"https://claude.ai/*",
"https://chat.deepseek.com/*"
],
"content_scripts": [
{
"matches": [
"https://chatgpt.com/c/*",
"https://chat.openai.com/*",
"https://claude.ai/*",
"https://chat.deepseek.com/*"
],
"js": [
"content.js",
"claude-content.js"
],
"css": [
"styles/styles.css",
"styles/themes/light-theme.css",
"styles/themes/dark-theme.css"
]
},
{
"matches": [
"https://chat.deepseek.com/*"
],
"js": [
"deepseek-content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"192": "icons/icon192.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"192": "icons/icon192.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}