WCL Ranked Buff Remover
Removes all rows that have external buffs on the rankings page for warcraftlogs.
WCL Ranked Buff Remover란 무엇입니까?
WCL Ranked Buff Remover은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes all rows that have external buffs on the rankings page for warcraftlogs."입니다.
확장 프로그램 스크린샷
WCL Ranked Buff Remover 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | WCL Ranked Buff Remover |
ID | mgmiagjlgdnignaaeblnffinlngmbnef |
공식 URL | https://chromewebstore.google.com/detail/wcl-ranked-buff-remover/mgmiagjlgdnignaaeblnffinlngmbnef |
설명 | Removes all rows that have external buffs on the rankings page for warcraftlogs. |
파일 크기 | 1.15 MB |
설치 횟수 | 124 |
현재 버전 | 4.0 |
최근 업데이트 | 2022-05-08 |
출시 날짜 | 2022-01-21 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Unknown |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" ] } |