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 on Hover",
"version": "2.1.0",
"description": "Hover to autoplay YouTube videos with instant toggle, delay, preview, whitelist, and blacklist options.",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "128.png",
"32": "128.png",
"48": "128.png",
"128": "128.png"
}
},
"icons": {
"16": "128.png",
"32": "128.png",
"48": "128.png",
"128": "128.png"
},
"commands": {
"toggle-hover-play": {
"suggested_key": {
"default": "Alt+H"
},
"description": "Toggle hover play on\/off"
}
}
}