YouTube Sampler

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

什麼是YouTube Sampler?

YouTube Sampler是由vibert.dev開發的Chrome擴展程式,該擴展的主要功能是“Create customized queue points of numeric keys (0~9) for YouTube video.”。

擴展截圖

screenshot

下載YouTube Sampler擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}