WCL Ranked Buff Remover
Removes all rows that have external buffs on the rankings page for warcraftlogs.
WCL Ranked Buff Remover là gì?
WCL Ranked Buff Remover là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Removes all rows that have external buffs on the rankings page for warcraftlogs.".
Ả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 WCL Ranked Buff Remover
Tải xuống các tệp mở rộng WCL Ranked Buff Remover 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
Deletes all rows on warcraftlogs ranks page that have external buffs. There's a toggle on the Chrome Extension for enabling/disabling the addon. Populates all 100 results, re-numbers the rankings, and re-colors the rank # and column. Adjusts top 100 breakdown to reflect the top 100 unbuffed players. Can navigate through multiple pages and the order of results is maintained. If navigating from the All Bosses page to a specific boss there will be a short delay before results are fixed. Change log: v4.0 - Major stability upgrades for browsing bosses with fewer than 100 results - Added top 100 breakdown updating for adjusted "Unbuffed" top 100. - Added button to top 100 to toggle "Buffed" or "Unbuffed" breakdown. v3.0 - Added populating the page with 100 results from following pages. v2.1 - Bug fix when switching from overall ranks page to specific boss rankings page v2.0 - Add on/off toggle to extension button in omnibar v1.0 - Hot pile of garbage
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WCL Ranked Buff Remover |
ID | mgmiagjlgdnignaaeblnffinlngmbnef |
URL Chính Thức | https://chromewebstore.google.com/detail/wcl-ranked-buff-remover/mgmiagjlgdnignaaeblnffinlngmbnef |
Mô tả | Removes all rows that have external buffs on the rankings page for warcraftlogs. |
Kích Thước Tệp | 1.15 MB |
Số Lần Cài Đặt | 124 |
Phiên Bản Hiện Tại | 4.0 |
Cập Nhật Lần Cuối | 2022-05-08 |
Ngày Phát Hành | 2022-01-21 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Unknown |
[email protected] | |
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": 3, "name": "WCL Ranked Buff Remover", "description": "Removes all rows that have external buffs on the rankings page for warcraftlogs.", "version": "4.0", "icons": { "16": "images\/veto_buff_number_16.png", "48": "images\/veto_buff_number_48.png", "128": "images\/veto_buff_number_128.png" }, "action": { "default_icon": "images\/veto_buff_number_16.png", "default_popup": "settings\/settingsPopup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.warcraftlogs.com\/zone\/rankings\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "injectedScript.js", "forceTableLoad.js" ], "matches": [ "https:\/\/*\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage" ] } |