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__",
"version": "1.0.4",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"contextMenus"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"host_permissions": [
"https:\/\/gemini.google.com\/*",
"https:\/\/www.gstatic.com\/*",
"https:\/\/*.workers.dev\/*"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"html2pdf.bundle.min.js",
"content.js"
],
"css": [
"content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"html2pdf.bundle.min.js",
"upgrade.html",
"upgrade.js",
"popup.js",
"icons\/*"
],
"matches": [
"https:\/\/gemini.google.com\/*"
]
}
]
}