Chatterino Native Host
Replaces the chat on Twitch.tv with Chatterino.
Chatterino Native Host là gì?
Chatterino Native Host là một tiện ích mở rộng Chrome được phát triển bởi fourtf, và tính năng chính của nó là "Replaces the chat on Twitch.tv with Chatterino.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chatterino Native Host
Tải xuống các tệp mở rộng Chatterino Native Host dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Overlay the Twitch.tv live chat with Chatterino, bringing the native performance and features of Chatterino to the website. Have the same experience chatting no matter if you are watching or are in offline chat. We use events and data provided by the browser to overlay a native Chatterino window over the browser. The information includes the channel in which the user is in, as well as the size of the chat. Changing the tab or closing a window causes the Chatterino application to hide/show the window. Chatterino tracks the position and z-level of the Browser window and moves itself accordingly. NOTE: - This extension only works on Windows. - We need to overlay a native window over the browser window which is tricky by design and may not work for you setup.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chatterino Native Host |
ID | glknmaideaikkmemifbfkhnomoknepka |
URL Chính Thức | https://chromewebstore.google.com/detail/chatterino-native-host/glknmaideaikkmemifbfkhnomoknepka |
Mô tả | Replaces the chat on Twitch.tv with Chatterino. |
Kích Thước Tệp | 28.37 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2023-03-31 |
Ngày Phát Hành | 2019-09-26 |
Đánh Giá | 3.16/5 Tổng số 62 Đánh Giá |
Nhà Phát Triển | fourtf |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fourtf/chatterino2 |
URL Trang Trợ Giúp | https://discord.gg/3vmJRwy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chatterino Native Host", "version": "1.5", "description": "Replaces the chat on Twitch.tv with Chatterino.", "permissions": [ "tabs", "nativeMessaging", "storage" ], "icons": { "256": "icon.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "50.0" } }, "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "inject.js" ] } ] } |