同步 YouTube 至 Discord
透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容!
Wat is 同步 YouTube 至 Discord?
同步 YouTube 至 Discord is een Chrome-extensie ontwikkeld door https://yami.io, en de belangrijkste functie is "透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容!".
Extensie Screenshots
Download het CRX-bestand van de extensie 同步 YouTube 至 Discord
Download 同步 YouTube 至 Discord-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
>>【這個擴充套件正處於測試狀態】<< ● 運作原理 這個擴充套件要求你必須開啟一個 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 中向大家炫耀你正在觀賞什麼內容,你甚至可以分享影片的觀看次數或是作者名稱!
Basisinformatie over de Extensie
Naam | 同步 YouTube 至 Discord |
ID | ccohbnhahehclidpaepfofhjeainglcg |
Officiële URL | https://chromewebstore.google.com/detail/%E5%90%8C%E6%AD%A5-youtube-%E8%87%B3-discord/ccohbnhahehclidpaepfofhjeainglcg |
Beschrijving | 透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容! |
Bestandsgrootte | 18.1 KB |
Aantal Installaties | 1,426 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2020-06-03 |
Publicatiedatum | 2020-06-02 |
Beoordeling | 4.71/5 Totaal 7 Beoordelingen |
Ontwikkelaar | https://yami.io |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/YamiOdymel/Sync-YouTube-To-Discord |
Help Pagina-URL | https://github.com/YamiOdymel/Sync-YouTube-To-Discord |
Ondersteunde Talen | 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" } ] } |