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": "Organize ChatGPT Conversations - chatTOC",
"version": "1.1.3",
"description": "You can add a table of contents to the conversations on ChatGPT.",
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"css": [
"styles.css"
],
"js": [
"utils\/updateNotification.js",
"utils\/autoTitle.js",
"utils\/chromeStorage.js",
"utils\/urlHelper.js",
"utils\/eventHandlers.js",
"utils\/tocHelper.js",
"utils\/form.js",
"utils\/chat.js",
"content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": "assets\/icon16.png",
"default_title": "chatTOC - chatGPT conversations organizer"
},
"web_accessible_resources": [
{
"resources": [
"utils\/updateNotification.js",
"utils\/autoTitle.js",
"utils\/chromeStorage.js",
"utils\/urlHelper.js",
"utils\/eventHandlers.js",
"utils\/tocHelper.js",
"utils\/form.js",
"utils\/chat.js",
"assets\/bookmark_colored.png"
],
"matches": [
"https:\/\/chatgpt.com\/*"
]
}
]
}