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.”。
扩展截图
下载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 |
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" ] } ] } |