Stops Autoplay, YouTube Tab Closer, One-Click Stop All Videos, Plays One Video at a Time. Option to exclude sites from auto-pause.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"default_title": "Youtube Auto Close, Auto Pause"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Q"
}
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_idle"
}
],
"description": "Stops Autoplay, YouTube Tab Closer, One-Click Stop All Videos, Plays One Video at a Time. Option to exclude sites from auto-pause.",
"host_permissions": [
"*://*/*"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"manifest_version": 3,
"name": "Youtube Auto Close, Auto Pause",
"options_page": "options.html",
"permissions": [
"tabs",
"activeTab",
"scripting",
"webNavigation",
"storage",
"contextMenus",
"notifications"
],
"version": "4.6",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}