YouTube Sampler

Create customized queue points of numeric keys (0~9) for YouTube video.

¿Qué es YouTube Sampler?

YouTube Sampler es una extensión de Chrome desarrollada por vibert.dev, y su función principal es "Create customized queue points of numeric keys (0~9) for YouTube video.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Sampler

Descarga archivos de extensión YouTube Sampler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre YouTube Sampler YouTube Sampler
ID jfkkfiknnoojphipaipdojadlpdeljbj
URL Oficial https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj
Descripción Create customized queue points of numeric keys (0~9) for YouTube video.
Tamaño del Archivo 537 KB
Cantidad de Instalaciones 464
Versión Actual 0.2
Última Actualización 2021-05-02
Fecha de Publicación 2021-03-11
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador vibert.dev
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/vibertthio/yt-sampler
URL de la Página de Ayuda https://github.com/vibertthio/yt-sampler/issues
Idiomas Soportados 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"
            ]
        }
    ]
}