Youtube Shorts Auto Scroll - Productivity++
Automatically scrolls when a Youtube Short ends.
Cos'è Youtube Shorts Auto Scroll - Productivity++?
Youtube Shorts Auto Scroll - Productivity++ è un'estensione di Chrome sviluppata da Productivity ++, e la sua funzione principale è "Automatically scrolls when a Youtube Short ends.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Shorts Auto Scroll - Productivity++
Scarica i file di estensione Youtube Shorts Auto Scroll - Productivity++ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed! Made with ❤️ from the team at Productivity ++. New version: Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload. Other bugs fixed
Informazioni di Base sull'Estensione
Nome | Youtube Shorts Auto Scroll - Productivity++ |
ID | bmjbgjndjeinofbgoanhkdgeclbfdbpm |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm |
Descrizione | Automatically scrolls when a Youtube Short ends. |
Dimensione del File | 618 KB |
Conteggio Installazioni | 332 |
Versione Corrente | 69.420 |
Ultimo Aggiornamento | 2023-05-30 |
Data di Pubblicazione | 2023-05-29 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | Productivity ++ |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Shorts Auto Scroll - Productivity++", "version": "69.420", "author": { "email": "[email protected]" }, "description": "Automatically scrolls when a Youtube Short ends.", "action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" }, "default_title": "YT Shorts Autoscroll", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "scroll-plain.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "128": "icon.png" }, "permissions": [ "scripting", "activeTab" ] } |