Better Shorts Player
Adds video player controls to YouTube Shorts
Qu'est-ce que Better Shorts Player ?
Better Shorts Player est une extension Chrome développée par Joubert Van Zyl, et sa fonction principale est "Adds video player controls to YouTube Shorts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Better Shorts Player
Téléchargez les fichiers d'extension Better Shorts Player au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video. The controls fade away when not being hovered on as to not be intrusive to the video.
Informations de Base sur l'Extension
Nom | Better Shorts Player |
ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
URL Officiel | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
Description | Adds video player controls to YouTube Shorts |
Taille du Fichier | 18.21 KB |
Nombre d'Installations | 802 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-03-06 |
Date de Publication | 2023-03-06 |
Évaluation | 4.77/5 Total 13 Évaluations |
Développeur | Joubert Van Zyl |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Shorts Player", "description": "Adds video player controls to YouTube Shorts", "manifest_version": 3, "version": "1.0.0", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "assets\/pause.png", "assets\/play.png", "assets\/muted.png", "assets\/unmuted.png" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |