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",
"name": "Vivideo - Real-time Video Enhancement",
"description": "Real-time video enhancement with brightness, contrast, saturation, gamma, and color temperature controls",
"version": "1.0.0",
"manifest_version": 3,
"author": "domintes",
"icons": {
"16": "src\/assets\/icon\/icon_16.png",
"32": "src\/assets\/icon\/icon_32.png",
"48": "src\/assets\/icon\/icon_48.png",
"128": "src\/assets\/icon\/icon_128.png"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/config.js",
"src\/utils\/storage.js",
"src\/utils\/uiHelper.js",
"src\/components\/videoControls.js",
"src\/components\/profileManager.js",
"src\/components\/themeManager.js",
"src\/components\/settingsManager.js",
"src\/components\/videoFilterEngine.js",
"src\/content.js"
],
"css": [
"styles.css"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_title": "Vivideo Controls",
"default_popup": "popup.html",
"default_icon": {
"16": "src\/assets\/icon\/icon_16.png",
"32": "src\/assets\/icon\/icon_32.png",
"48": "src\/assets\/icon\/icon_48.png",
"128": "src\/assets\/icon\/icon_128.png"
}
},
"commands": {
"toggle-vivideo": {
"suggested_key": {
"default": "Alt+V"
},
"description": "Toggle Vivideo controls"
},
"next-profile": {
"suggested_key": {
"default": "Alt+B"
},
"description": "Switch to next profile"
},
"prev-profile": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Switch to previous profile"
}
}
}