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_extension_name__",
"version": "1.2.0",
"description": "__MSG_extension_description__",
"default_locale": "en",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/chat.mistral.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/aistudio.google.com\/*",
"https:\/\/*.googleapis.com\/*",
"https:\/\/*.firebase.google.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"youtube.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"chatgpt.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/claude.ai\/*"
],
"js": [
"claude.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"gemini.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/chat.mistral.ai\/*"
],
"js": [
"mistral.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/aistudio.google.com\/*"
],
"js": [
"aistudio.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/*.googleapis.com https:\/\/*.firebase.google.com"
}
}