YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
What is YouTube Autoplay Disabler?
YouTube Autoplay Disabler is a Chrome extension developed by Luciano Ratamero, and its main feature is "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".
Extension Screenshots
Download YouTube Autoplay Disabler Extension CRX File
Download YouTube Autoplay Disabler 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
Free and open-sourced alternative for disabling YouTube's autoplay "feature" Checks if YouTube autoplay is on and, if it is, disables it. https://github.com/lucianoratamero/youtube-autoplay-disabler
Extension Basic Information
Name | YouTube Autoplay Disabler |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
Official URL | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
Description | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
File Size | 366 KB |
Installation Count | 161 |
Current Version | 0.2.1 |
Last Updated | 2021-04-29 |
Publish Date | 2018-06-15 |
Rating | 3.12/5 Total 17 Ratings |
Developer | Luciano Ratamero |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Autoplay Disabler", "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.", "version": "0.2.1", "icons": { "128": "icon-small.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "icon-small.png" } } |