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": "Google Gemini Folders & Chat organizer - Fast Folders",
"version": "2.0.18",
"description": "Quickly create, organize and access chat folders for Google Gemini.",
"permissions": [
"storage",
"unlimitedStorage",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/*.gemini.google.com\/*",
"https:\/\/ff-license-api.onrender.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "public\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.gemini.google.com\/*"
],
"js": [
"bundle.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"options_page": "options\/options.html",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' connect-src 'self' https:\/\/ff-license-api.onrender.com;",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"content.css"
],
"matches": [
"https:\/\/*.google.com\/*"
]
}
]
}