Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"manifest_version": 3,
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AI Chat to Word, PDF & Google Docs - for Gemini",
"description": "Convert the Gemini content into a Microsoft Word, Google Docs or a PDF format in a single click.",
"version": "2.0.1",
"action": {
"default_title": "Gemini to Word or PDF",
"default_icon": {
"16": "assets\/logo16.png",
"48": "assets\/logo48.png",
"128": "assets\/logo128.png"
}
},
"icons": {
"16": "assets\/logo16.png",
"48": "assets\/logo48.png",
"128": "assets\/logo128.png"
},
"permissions": [
"downloads",
"identity",
"identity.email",
"storage"
],
"oauth2": {
"client_id": "150577933591-oka6m4nug5aai7vprlt06pjkrnrahlnt.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/drive.file"
]
},
"host_permissions": [
"https:\/\/gemini.google.com\/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"content.bundle.js"
],
"css": [
"css\/styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"js\/finder.js"
],
"matches": [
"https:\/\/gemini.google.com\/*"
]
}
]
}