Inspect and view changes in VisioPilot - AI Automation Chat 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
{
"manifest_version": 3,
"short_name": "VisioPilot",
"name": "VisioPilot",
"version": "0.0.5",
"description": "AI-Powered Web Automation Chat",
"author": "VisioPilot",
"icons": {
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"64": "assets/icon-64.png",
"96": "assets/icon-96.png",
"128": "assets/icon-128.png"
},
"homepage_url": "https://visiopilot.com/",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background-script.js"
]
},
"action": {
"default_icon": {
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"64": "assets/icon-64.png",
"96": "assets/icon-96.png",
"128": "assets/icon-128.png"
},
"default_title": "VisioPilot",
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "visiopilot@visiopilot.com",
"strict_min_version": "109.0"
}
}
}