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": "BibBib", "description": "Generate citations and use an AI assistant sidebar powered by GPT that can read page content.", "version": "1.0", "permissions": [ "contextMenus", "activeTab", "scripting", "clipboardWrite", "storage" ], "host_permissions": [ "<all_urls>", "https:\/\/bibbib-worker.bibbib-backend.workers.dev\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "128": "icon.png" }, "web_accessible_resources": [ { "resources": [ "icon.png" ], "matches": [ "<all_urls>" ] } ], "action": { "default_title": "BibBib", "default_popup": "popup.html" } }