Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
Twitch - Remove Top Cheer là gì?
Twitch - Remove Top Cheer là một tiện ích mở rộng Chrome được phát triển bởi josh.m.correia, và tính năng chính của nó là "This extension removes the top cheer from the top of chat on twitch.tv".
Ả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 Twitch - Remove Top Cheer
Tải xuống các tệp mở rộng Twitch - Remove Top Cheer 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
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
URL Chính Thức | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
Mô tả | This extension removes the top cheer from the top of chat on twitch.tv |
Kích Thước Tệp | 39.8 KB |
Số Lần Cài Đặt | 88 |
Phiên Bản Hiện Tại | 1.03 |
Cập Nhật Lần Cuối | 2019-02-17 |
Ngày Phát Hành | 2019-02-17 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | josh.m.correia |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch - Remove Top Cheer", "description": "This extension removes the top cheer from the top of chat on twitch.tv", "version": "1.03", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "tabs" ], "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.2.1.min.js", "remove_top_cheer.js" ], "run_at": "document_end" } ] } |