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": "YouTube Autoplay Preventer - Stop Video Previews",
"description": "Block YouTube video autoplay on hover. Save bandwidth and prevent unwanted sounds.",
"version": "1.0.0",
"short_name": "YT Autoplay Block",
"icons": {
"16": "icon\/icon-16.png",
"32": "icon\/icon-32.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_title": "YouTube Autoplay Preventer - Stop Video Previews",
"default_popup": "popup.html"
},
"homepage_url": "https:\/\/github.com\/gthrm\/youtube-autoplay-preventer",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content-scripts\/content.js"
]
}
]
}