YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Vad är YouTube Autoplay Disabler?
YouTube Autoplay Disabler är en Chrome-tillägg utvecklad av Luciano Ratamero, och dess huvudfunktion är "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".
Tilläggsskärmbilder
Ladda ner YouTube Autoplay Disabler-förlängningens CRX-fil
Ladda ner YouTube Autoplay Disabler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | YouTube Autoplay Disabler |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
Beskrivning | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
Filstorlek | 366 KB |
Antal Installationer | 161 |
Aktuell Version | 0.2.1 |
Senast Uppdaterad | 2021-04-29 |
Publiceringsdatum | 2018-06-15 |
Betyg | 3.12/5 Totalt 17 Betyg |
Utvecklare | Luciano Ratamero |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |