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": "Video & Audio Manager",
"version": "1.3.1",
"description": "Advanced video and audio settings manager for any website",
"author": "Aristarh Ucolov",
"icons": {
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"action": {
"default_icon": {
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"default_popup": "popup\/popup.html",
"default_title": "Video & Audio Manager"
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"activeTab"
],
"web_accessible_resources": [
{
"resources": [
"content\/video-audio-processor.js"
],
"matches": [
"<all_urls>"
]
}
]
}