YT-ChatToChannel
YouTubeライブのチャットからユーザーのチャンネルに移動します。
Vad är YT-ChatToChannel?
YT-ChatToChannel är en Chrome-tillägg utvecklad av mymabishain, och dess huvudfunktion är "YouTubeライブのチャットからユーザーのチャンネルに移動します。".
Tilläggsskärmbilder
Ladda ner YT-ChatToChannel-förlängningens CRX-fil
Ladda ner YT-ChatToChannel-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
YouTubeライブでは現在のチャットからチャンネルに移動することが出来ません。
この拡張機能ではそれを可能にしております。
youtubeライブのモデレーターの方はこの拡張機能を使用し
なりすましを防止出来ます。
使い方:
拡張機能を導入後
チャットのアイコンをクリックすると別タブにてユーザーのチャンネルページが表示されます。
注意事項:
チャンネルが正しく表示されない場合は一度ライブページを更新して再度アイコンをクリックしてください。 Grundläggande Information om Tillägg
| Namn | |
| ID | obdgcbahccikfdekeofjpafkmndkfofe |
| Officiell webbadress | https://chromewebstore.google.com/detail/yt-chattochannel/obdgcbahccikfdekeofjpafkmndkfofe |
| Beskrivning | YouTubeライブのチャットからユーザーのチャンネルに移動します。 |
| Filstorlek | 10.88 KB |
| Antal Installationer | 1,600 |
| Aktuell Version | 0.0.5 |
| Senast Uppdaterad | 2022-08-29 |
| Publiceringsdatum | 2021-11-16 |
| Betyg | 4.50/5 Totalt 4 Betyg |
| Utvecklare | mymabishain |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://twitter.com/maimabishain |
| Stödda Språk | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YT-ChatToChannel",
"version": "0.0.5",
"icons": {
"128": "icon.png"
},
"description": "YouTube\u30e9\u30a4\u30d6\u306e\u30c1\u30e3\u30c3\u30c8\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u306e\u30c1\u30e3\u30f3\u30cd\u30eb\u306b\u79fb\u52d5\u3057\u307e\u3059\u3002",
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"*:\/\/studio.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": [],
"permissions": [
"webRequest"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/studio.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |