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",
"name": "__MSG_appName__",
"version": "0.0.3",
"description": "__MSG_appDesc__",
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"storage"
],
"action": [],
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"isolated.js"
],
"run_at": "document_start"
}
],
"icons": {
"128": "icon128.png"
},
"commands": {
"a_main": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "__MSG_mainShortcut__"
}
}
}