HoloSongs
Integrate Holodex features into YouTube!
HoloSongs क्या है?
HoloSongs mintchoco द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Integrate Holodex features into YouTube!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HoloSongs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Powered by the global Holodex community, HoloSongs adds a full featured media player to long YouTube livestreams so you can seek to your favorite songs and play them on repeat. *** Features *** Full featured media player alongside singing streams - Setlist at a glance - Seek and skip individual songs - Repeat mode - Music mode (skips talking segments) Works with most videos from your favorite streamers, including streamers from Hololive, Nijisanji and other organizations. *** What's new in v1.1.1 *** - Fixed an issue with setlist appearance *** Previous updates *** v1.1.0 - Songs without artwork now display a placeholder - Setlist is now collapsible - Improved the look of the setlist's scrollbar - Fixed an issue that caused incorrect setlists to sometimes appear
एक्सटेंशन की मूल जानकारी
नाम | HoloSongs |
ID | ipibfcnlipdkimfmajnddpboejkocplf |
आधिकारिक URL | https://chromewebstore.google.com/detail/holosongs/ipibfcnlipdkimfmajnddpboejkocplf |
विवरण | Integrate Holodex features into YouTube! |
फ़ाइल का आकार | 284 KB |
स्थापना संख्या | 264 |
वर्तमान संस्करण | 1.1.1 |
अंतिम अपडेट | 2023-04-05 |
प्रकाशन तिथि | 2023-01-29 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | mintchoco |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/themintchoco/holosongs |
सहायता पृष्ठ URL | https://github.com/themintchoco/holosongs/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "HoloSongs", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "alarms", "scripting", "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "*.js", "assets\/*" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "version": "1.1.1", "description": "Integrate Holodex features into YouTube!" } |