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": "ChatGPT Table of Contents",
"version": "1.2.1",
"description": "Display a table of contents for ChatGPT generated content in a right sidebar",
"permissions": [],
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"sidebar.html"
],
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
]
}
],
"icons": {
"16": "icons\/toc_gpt_icon_16.png",
"32": "icons\/toc_gpt_icon_32.png",
"48": "icons\/toc_gpt_icon_48.png",
"128": "icons\/toc_gpt_icon_128.png"
},
"action": {
"default_title": "GPT TOC",
"default_icon": {
"16": "icons\/toc_gpt_icon_16.png",
"32": "icons\/toc_gpt_icon_32.png",
"48": "icons\/toc_gpt_icon_48.png",
"128": "icons\/toc_gpt_icon_128.png"
}
}
}