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 Architect",
"version": "2.22",
"description": "Organize Gemini chats into folders with drag-to-reorder, wide mode, and keyboard shortcuts.",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/gemini.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Gemini Architect",
"default_icon": {
"16": "icon128.png",
"48": "icon128.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon128.png",
"48": "icon128.png",
"128": "icon128.png"
}
}