Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 30, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ChatGPT Splitter",
"description": "Automatically splits long texts and inputs them into ChatGPT",
"version": "0.4.0",
"icons": {
"16": "icon\/16.png",
"48": "icon\/48.png",
"128": "icon\/128.png",
"512": "icon\/512.png"
},
"permissions": [
"activeTab"
],
"action": {
"default_title": "Show Split Modal",
"default_icon": {
"16": "icon\/16.png",
"48": "icon\/48.png",
"128": "icon\/128.png",
"512": "icon\/512.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/**",
"https:\/\/poe.com\/chat\/*"
],
"js": [
"content-scripts\/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts\/content.css"
],
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/poe.com\/*"
]
}
]
}