YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
YouTube Sampler क्या है?
YouTube Sampler vibert.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create customized queue points of numeric keys (0~9) for YouTube video."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Sampler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |