Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Convert ChatGPT to Google Doc, Microsoft Word, PDF",
"description": "Convert ChatGPT response (Rich format text, images, tables) to Google doc, Microsoft word, PDF with 1 click.",
"version": "2.1.0",
"action": {
"default_title": "Convert ChatGPT to Google Doc, Microsoft Word, 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"
],
"host_permissions": [
"https:\/\/chatgpt.com\/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"content.bundle.js"
],
"css": [
"css\/styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*"
],
"matches": [
"https:\/\/chatgpt.com\/*"
]
}
],
"oauth2": {
"client_id": "349481465252-13hl5bdrr7r6oqhbf8mlu9sh0ngc2q4t.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/drive.file"
]
}
}