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": "PRMDB for Bard-Gemini", "description": "Create public and private custom prompts for Google Gemini(Bard)", "version": "1.1.0", "version_name": "1.1.0", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "PRMDB - Open Gemini" }, "options_page": "options.html", "permissions": [ "storage", "webRequest" ], "host_permissions": [ "<all_urls>" ], "web_accessible_resources": [ { "resources": [ "config.js", "main.js", "inactive.js", "httpService.js", "utils.js", "vars.js", "tw.css", "style.css" ], "matches": [ "https:\/\/gemini.google.com\/*" ], "use_dynamic_url": true }, { "resources": [ "options.html" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "js": [ "content_script.js" ], "css": [ "tw.css", "style.css" ], "matches": [ "https:\/\/gemini.google.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" } }