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": "LightSession Pro for ChatGPT",
"version": "1.6.2",
"description": "Keep ChatGPT fast by keeping only the last N messages in the DOM. Local-only.",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_title": "LightSession Pro",
"default_popup": "popup\/popup.html"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
],
"js": [
"dist\/page-inject.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
],
"js": [
"dist\/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "dist\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"dist\/page-script.js",
".dev"
],
"matches": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
]
}
]
}