Inspect and view changes in TextGPT - Smarter Text Input by OpenAI 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "TextGPT - Smarter Text Input by OpenAI",
"version": "1.8",
"author": "Dev Shekhawat - adeelabs",
"description": "TextGPT: Your Virtual Co-Pilot for Smarter Text Input in the Browser, Powered by OpenAI's ChatGPT",
"homepage_url": "https://trytextgpt.vercel.app/?ref=homepage_url",
"manifest_version": 3,
"permissions": [
"storage",
"tabs",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"options_page": "options.html",
"icons": {
"16": "assets/logo-16.png",
"32": "assets/logo-32.png",
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets/logo-32.svg",
"assets/loading.svg",
"assets/gear.svg"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"runAt": "document_end",
"js": [
"script.js",
"createApiKey.js"
],
"all_frames": true
}
]
}