Inspect and view changes in Bizbudd - AI powered assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Bizbudd - AI powered assistant",
"manifest_version": 2,
"version": "1.0.3",
"short_name": "Bizbudd",
"description": "BizBudd: Your AI business assistant for content creation, workflow optimization, and writing enhancement in one dashboard.",
"permissions": [
"activeTab",
"storage",
"contextMenus",
"<all_urls>",
"*://*/*"
],
"icons": {
"16": "assets/bizavatar.png",
"48": "assets/bizavatar.png",
"128": "assets/bizavatar.png"
},
"omnibox": {
"keyword": "bizbudd"
},
"background": {
"page": "background.html"
},
"commands": {
"open": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Open AI Assistant"
}
},
"content_scripts": [
{
"js": [
"src/content-scripts/main.js"
],
"css": [
"assets/src/css/standalone.c4e1cada.css"
],
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
]
}
],
"web_accessible_resources": [
"assets/*",
"assets/src/content-scripts/main.a33812b4.css",
"bizcontent.js",
"standalone.html"
],
"content_security_policy": "script-src 'self'; object-src 'self'; worker-src 'self';",
"browser_specific_settings": {
"gecko": {
"id": "info@cloud.bizbudd.ai",
"strict_min_version": "109.0"
}
},
"browser_action": {
"default_title": "Bizbudd",
"default_icon": {
"19": "assets/bizavatar.png",
"38": "assets/bizavatar.png"
}
}
}