YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
Qu'est-ce que YouTube Sampler ?
YouTube Sampler est une extension Chrome développée par vibert.dev, et sa fonction principale est "Create customized queue points of numeric keys (0~9) for YouTube video.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Sampler
Téléchargez les fichiers d'extension YouTube Sampler 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
Make YouTube videos your biggest sample inspiration database. You can now share queue points with your friends with v.0.2. YouTube has default key mapping on numeric keys to for jumping to different part of a video. "YouTube Sampler" help to customize the queue points. You can also hold the "shift" key to fine tune the position. The extension will save your changes automatically in your browser.
Informations de Base sur l'Extension
Nom | YouTube Sampler |
ID | jfkkfiknnoojphipaipdojadlpdeljbj |
URL Officiel | https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj |
Description | Create customized queue points of numeric keys (0~9) for YouTube video. |
Taille du Fichier | 537 KB |
Nombre d'Installations | 464 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2021-05-02 |
Date de Publication | 2021-03-11 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | vibert.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/vibertthio/yt-sampler |
URL de la Page d'Aide | https://github.com/vibertthio/yt-sampler/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Sampler", "version": "0.2", "description": "Create customized queue points of numeric keys (0~9) for YouTube video.", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" } }, "icons": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "MacCtrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "Tone.js", "content_script.js" ] } ] } |