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": "Gemini Code Enhancer",
"version": "1.0.0",
"description": "Edit code conveniently, test code instantly in 40+ languages. Perfect for people who want to quickly test and refine code snippets.",
"icons": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"content-script\/index.js"
],
"css": [
"content-script\/style.css"
]
}
],
"permissions": [
"clipboardWrite",
"storage"
],
"host_permissions": [
"https:\/\/gemini.google.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"content-script\/*"
],
"matches": [
"https:\/\/gemini.google.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; worker-src 'self'"
}
}