Youtube Chat Recorder
App to operate streaming chat.
Cos'è Youtube Chat Recorder?
Youtube Chat Recorder è un'estensione di Chrome sviluppata da mbs-code, e la sua funzione principale è "App to operate streaming chat.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Chat Recorder
Scarica i file di estensione Youtube Chat Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
YouTube のチャットがあるページ(ライブ、アーカイブ等)を開いた際に、チャットを監視し操作する拡張機能です。
全ての機能はローカル環境で使用可能で、外部に送信されることはありません。 Informazioni di Base sull'Estensione
| Nome | |
| ID | jfpgcnfhgekhpggplcicbakkcnkhhebk |
| URL Ufficiale | https://chromewebstore.google.com/detail/youtube-chat-recorder/jfpgcnfhgekhpggplcicbakkcnkhhebk |
| Descrizione | App to operate streaming chat. |
| Dimensione del File | 2.12 MB |
| Conteggio Installazioni | 228 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-01-12 |
| Data di Pubblicazione | 2021-01-12 |
| Sviluppatore | mbs-code |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Chat Recorder",
"description": "App to operate streaming chat.",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "icons\/icon-16x16.png",
"48": "icons\/icon-48x48.png",
"128": "icons\/icon-128x128.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icon-16x16-grey.png",
"24": "icons\/icon-24x24-grey.png",
"32": "icons\/icon-32x32-grey.png"
},
"default_title": "youtube_chat_recorder",
"default_popup": "popup\/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options\/options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"https:\/\/*.youtube.com\/*"
]
} | |