Youtube Shorts Auto Scroll - Productivity++
Automatically scrolls when a Youtube Short ends.
Was ist Youtube Shorts Auto Scroll - Productivity++?
Youtube Shorts Auto Scroll - Productivity++ ist eine Chrome-Erweiterung, die von Productivity ++ entwickelt wurde, und ihr Hauptmerkmal ist "Automatically scrolls when a Youtube Short ends.".
Erweiterungsscreenshots
Youtube Shorts Auto Scroll - Productivity++-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Shorts Auto Scroll - Productivity++-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Youtube Shorts Auto Scroll - Productivity++ |
ID | bmjbgjndjeinofbgoanhkdgeclbfdbpm |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm |
Beschreibung | Automatically scrolls when a Youtube Short ends. |
Dateigröße | 618 KB |
Installationsanzahl | 332 |
Aktuelle Version | 69.420 |
Letztes Update | 2023-05-30 |
Veröffentlichungsdatum | 2023-05-29 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | Productivity ++ |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |