Anduril
Adds useful features to the Twitch interface
Anduril là gì?
Anduril là một tiện ích mở rộng Chrome được phát triển bởi thisRaptori, và tính năng chính của nó là "Adds useful features to the Twitch interface".
Ả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 Anduril
Tải xuống các tệp mở rộng Anduril 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
As each Twitch community grows, it becomes increasingly difficult to manage. The chat in particular can become hard to follow, and important messages quickly get lost in the deluge of messages. Anduril adds features to the Twitch user interface designed to help streamers and moderators keep up! No guarantees that features will always work - when Twitch makes updates, this extension may break. If you find any bugs, please open an issue. Note that some features will only work if you have your Twitch UI language set to English!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Anduril |
ID | hilmmmfdfaflmanloccldjiokgafaiaa |
URL Chính Thức | https://chromewebstore.google.com/detail/anduril/hilmmmfdfaflmanloccldjiokgafaiaa |
Mô tả | Adds useful features to the Twitch interface |
Kích Thước Tệp | 29.53 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 1.7.4 |
Cập Nhật Lần Cuối | 2022-12-11 |
Ngày Phát Hành | 2021-01-15 |
Nhà Phát Triển | thisRaptori |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/thisRaptori/anduril |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Anduril", "version": "1.7.4", "description": "Adds useful features to the Twitch interface", "author": "Joe Raptori", "manifest_version": 2, "icons": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "64": "icon\/icon64.png", "128": "icon\/icon128.png" }, "browser_action": { "default_icon": "icon\/icon32.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "features\/chatFilters.js", "features\/fullHeightWhispers.js", "features\/hideTheSpider.js", "features\/hideViewerCounts.js", "features\/userHighlight.js", "features\/userNote.js", "features\/userPopup.js" ], "css": [ "features\/chatFilters.css", "features\/fullHeightWhispers.css", "features\/hideTheSpider.css", "features\/hideViewerCounts.css", "features\/userHighlight.css", "features\/userNote.css" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "permissions": [ "storage" ] } |