YouTube Sampler

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

Что такое YouTube Sampler?

YouTube Sampler - это расширение Chrome, разработанное vibert.dev, и его основная функция - "Create customized queue points of numeric keys (0~9) for YouTube video.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Sampler

Скачайте файлы расширений YouTube Sampler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название YouTube Sampler YouTube Sampler
ID jfkkfiknnoojphipaipdojadlpdeljbj
Официальный URL https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj
Описание Create customized queue points of numeric keys (0~9) for YouTube video.
Размер файла 537 KB
Количество установок 464
Текущая Версия 0.2
Последнее Обновление 2021-05-02
Дата публикации 2021-03-11
Рейтинг 5.00/5 Всего 2 оценок
Разработчик vibert.dev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/vibertthio/yt-sampler
URL страницы помощи https://github.com/vibertthio/yt-sampler/issues
Поддерживаемые языки 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"
            ]
        }
    ]
}