Youtube Translater
Translate youtube comments to a preferred language
Youtube Translaterとは何ですか?
Youtube Translaterはtheimmortalwarrior071によって開発されたChromeの拡張機能で、その主な機能は「Translate youtube comments to a preferred language」です。
拡張機能のスクリーンショット
Youtube Translater拡張機能のCRXファイルをダウンロード
Youtube Translater拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.
拡張機能の基本情報
名前 | Youtube Translater |
ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
公式URL | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
説明 | Translate youtube comments to a preferred language |
ファイルサイズ | 10.45 KB |
インストール数 | 24 |
現在のバージョン | 0.1.0 |
最終更新日 | 2023-07-27 |
公開日 | 2023-07-27 |
評価 | 4.60/5 合計 10 レビュー |
開発者 | theimmortalwarrior071 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Translater", "description": "Translate youtube comments to a preferred language", "version": "0.1.0", "permissions": [ "storage", "tabs" ], "icons": { "128": "icons\/logo.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |