Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"16": "icons\/logo-16.png",
"128": "icons\/logo.png"
},
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_title": "GPT Popup",
"default_icon": {
"128": "icons\/logo.png"
}
},
"commands": {
"toggle_InstagramChatGPT": {
"description": "Run ChatGPT on the current page.",
"suggested_key": {
"default": "Ctrl+B",
"linux": "Ctrl+B",
"mac": "Command+B"
}
}
},
"content_scripts": [
{
"matches": [
"*:\/\/play.google.com\/*"
],
"js": [
"js\/content-script.js",
"js\/chunk-vendors.js"
],
"css": [
"css\/content-script.css"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.openai.com\/*"
],
"js": [
"js\/chatgpt-script.js"
],
"css": [],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"*:\/\/play.google.com\/*",
"*:\/\/*.openai.com\/*"
]
}
],
"permissions": [
"storage",
"activeTab",
"commands"
],
"host_permissions": [
"*:\/\/play.google.com\/*",
"*:\/\/*.openai.com\/*"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'"
}
}