Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
What is Remove YouTube Autoplay?
Remove YouTube Autoplay is a Chrome extension developed by Kareem ElFaramawi, and its main feature is "Isn't YouTube autoplay the worst? This removes it".
Extension Screenshots
Download Remove YouTube Autoplay Extension CRX File
Download Remove YouTube Autoplay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends. This extension will continue to work if you: - Delete browser history - Enter incognito mode (After enabling this option in your extension settings) Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.
Extension Basic Information
Name | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
Official URL | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
Description | Isn't YouTube autoplay the worst? This removes it |
File Size | 1.68 MB |
Installation Count | 848 |
Current Version | 0.1.7 |
Last Updated | 2023-06-05 |
Publish Date | 2018-10-06 |
Rating | 3.57/5 Total 23 Ratings |
Developer | Kareem ElFaramawi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/krx/chrome-delete-youtube-autoplay |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove YouTube Autoplay", "description": "Isn't YouTube autoplay the worst? This removes it", "author": "krx", "version": "0.1.7", "host_permissions": [ "http:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/disableAutoplay.js" ], "run_at": "document_end" } ], "action": { "default_icon": "img\/icon_19.png" }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" } } |