同步 YouTube 至 Discord
透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容!
Hvad er 同步 YouTube 至 Discord?
同步 YouTube 至 Discord er en Chrome-udvidelse udviklet af https://yami.io, og dens hovedfunktion er "透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容!".
Udvidelsesskærmbilleder
Download 同步 YouTube 至 Discord-udvidelses-CRX-fil
Download 同步 YouTube 至 Discord-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
>>【這個擴充套件正處於測試狀態】<< ● 運作原理 這個擴充套件要求你必須開啟一個 Discord 與 YouTube 分頁籤,並且透過 JavaScript 程式碼植入將 YouTube 的播放狀態同步至 Discord 的 WebSocket 傳輸埠口。 ● 這會不會很危險 不會,你也不會因此而有任何帳號使用權的損失。 本擴充套件為開放原始碼專案,並以「別當個機掰人」公眾授權條款釋出,你可以在 https://github.com/YamiOdymel/Sync-YouTube-To-Discord 一覽整個擴充套件的原始碼! 謝謝 Tim "timmyRS" Speckhals 的原始擴充套件(https://github.com/timmyRS/Set-Discord-Activity)! ● 我要怎麼停止監聽 此擴充套件沒有手動停止的功能。 但你可以將「當 ... 才更改狀態」設置為「頻道在下列清單中」,如此一來就永遠不會更新狀態。如果你認為這樣很麻煩,那麼移除擴充套件不妨是個好主意。 ● 這能做什麼? 在 Discord 中向大家炫耀你正在觀賞什麼內容,你甚至可以分享影片的觀看次數或是作者名稱!
Grundlæggende oplysninger om udvidelsen
Navn | 同步 YouTube 至 Discord |
ID | ccohbnhahehclidpaepfofhjeainglcg |
Officiel URL | https://chromewebstore.google.com/detail/%E5%90%8C%E6%AD%A5-youtube-%E8%87%B3-discord/ccohbnhahehclidpaepfofhjeainglcg |
Beskrivelse | 透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容! |
Filstørrelse | 18.1 KB |
Antal Installationer | 1,426 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2020-06-03 |
Udgivelsesdato | 2020-06-02 |
Bedømmelse | 4.71/5 Samlet 7 Bedømmelser |
Udvikler | https://yami.io |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/YamiOdymel/Sync-YouTube-To-Discord |
Hjælpeside-URL | https://github.com/YamiOdymel/Sync-YouTube-To-Discord |
Understøttede Sprog | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "zh_TW", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "icons": { "128": "icon.png" }, "version": "1.0.1", "author": "YamiOdymel", "minimum_chrome_version": "41", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/discord.com\/channels\/*", "https:\/\/ptb.discord.com\/channels\/*", "https:\/\/canary.discord.com\/channels\/*" ], "js": [ "discord.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube.js" ], "run_at": "document_idle" } ] } |