YouTube Sampler

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

What is YouTube Sampler?

YouTube Sampler is a Chrome extension developed by vibert.dev, and its main feature is "Create customized queue points of numeric keys (0~9) for YouTube video.".

Extension Screenshots

screenshot

Download YouTube Sampler Extension CRX File

Download YouTube Sampler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Sampler YouTube Sampler
ID jfkkfiknnoojphipaipdojadlpdeljbj
Official URL https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj
Description Create customized queue points of numeric keys (0~9) for YouTube video.
File Size 537 KB
Installation Count 464
Current Version 0.2
Last Updated 2021-05-02
Publish Date 2021-03-11
Rating 5.00/5 Total 2 Ratings
Developer vibert.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/vibertthio/yt-sampler
Help Page URL https://github.com/vibertthio/yt-sampler/issues
Supported Languages 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"
            ]
        }
    ]
}