Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
Vad är Remove YouTube Autoplay?
Remove YouTube Autoplay är en Chrome-tillägg utvecklad av Kareem ElFaramawi, och dess huvudfunktion är "Isn't YouTube autoplay the worst? This removes it".
Tilläggsskärmbilder
Ladda ner Remove YouTube Autoplay-förlängningens CRX-fil
Ladda ner Remove YouTube Autoplay-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
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.
Grundläggande Information om Tillägg
Namn | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
Officiell webbadress | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
Beskrivning | Isn't YouTube autoplay the worst? This removes it |
Filstorlek | 1.68 MB |
Antal Installationer | 848 |
Aktuell Version | 0.1.7 |
Senast Uppdaterad | 2023-06-05 |
Publiceringsdatum | 2018-10-06 |
Betyg | 3.57/5 Totalt 23 Betyg |
Utvecklare | Kareem ElFaramawi |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/krx/chrome-delete-youtube-autoplay |
Stödda Språk | 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" } } |