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": "__MSG_extensionName_gpt__",
"description": "__MSG_extensionDescription_gpt__",
"default_locale": "en",
"version": "1.0.6",
"permissions": [
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"side_panel": {
"default_path": "sidebar.html"
},
"icons": {
"16": "assets\/image\/gpt16.png",
"32": "assets\/image\/gpt32.png",
"48": "assets\/image\/gpt48.png",
"128": "assets\/image\/gpt128.png"
},
"action": {
"default_icon": {
"16": "assets\/image\/gpt16.png",
"32": "assets\/image\/gpt32.png",
"48": "assets\/image\/gpt48.png",
"128": "assets\/image\/gpt128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"css": [
"assets\/css\/icon.css"
],
"js": [
"assets\/js\/icon.js"
]
},
{
"matches": [
"https:\/\/api.gptsidebar.com\/*",
"https:\/\/gptsidebar.com\/*",
"https:\/\/app.gptsidebar.com\/*"
],
"run_at": "document_end",
"js": [
"assets\/js\/gptsidebar.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"src\/*",
"public\/*"
],
"matches": [
"<all_urls>"
]
}
]
}