Rivals Board Enhancements

This extension adds a number of enhancements to the new rivals message board

什么是Rivals Board Enhancements?

Rivals Board Enhancements是由Yakrware开发的Chrome扩展程序,该扩展的主要功能是“This extension adds a number of enhancements to the new rivals message board”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Rivals Board Enhancements扩展crx文件

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

扩展使用说明

                        Rivals is halfway through updating their message boards, if yours breaks with version 2, you can copy version 1 here and load unpacked: https://github.com/kayakyakr/rivals-board-enhancements.

Features:

All Views: 
- Removes side bar
- Force wide - sets to 100% width

Forum View:
- Displays compact forum view

Thread View:
- Hides extra user details
- Replaces mobile avatars with normal avatars (gifs will display now)
- Shows rectangular avatars with max height/width of 96 px
- Compact view removes a lot of white space                    

扩展基本信息

名称 Rivals Board Enhancements Rivals Board Enhancements
ID ocolfhpogcchjfldbmjmigpneldphngf
官方URL https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf
简介 This extension adds a number of enhancements to the new rivals message board
文件大小 42.83 KB
安装次数 1,697
当前版本 2.0.3
更新时间 2020-08-27
上架时间 2016-07-27
评分 4.91/5 共34次评分
开发者 Yakrware
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rivals Board Enhancements",
    "description": "This extension adds a number of enhancements to the new rivals message board",
    "version": "2.0.3",
    "icons": {
        "48": "icon.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.forums.rivals.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.forums.rivals.com\/*"
            ],
            "js": [
                "document_end.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.forums.rivals.com\/*"
            ],
            "css": [
                "forum_enhancements.css"
            ],
            "js": [
                "jquery.js",
                "document_start.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}