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",
"$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
"manifest_version": 3,
"name": "GPT Extension",
"description": "AI chat, notes, tasks, and weather\u2014everything you need to stay productive, right on your new tab.",
"version": "1.0",
"icons": {
"16": "extension_16.png",
"32": "extension_32.png",
"48": "extension_48.png",
"128": "extension_128.png",
"256": "extension_256.png"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"permissions": [
"storage",
"geolocation"
],
"host_permissions": [
"https:\/\/api.open-meteo.com\/*",
"https:\/\/chatgpt-extension.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/chatgpt-extension.com https:\/\/geocoding-api.open-meteo.com https:\/\/api.open-meteo.com"
},
"devtools_page": "start-devtools.html"
}