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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载WCL Ranked Buff Remover扩展crx文件

下载WCL Ranked Buff Remover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
    ]
}