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
Eメール [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
    }
}