Rivals Board Enhancements

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

Apa itu Rivals Board Enhancements?

Rivals Board Enhancements adalah ekstensi Chrome yang dikembangkan oleh Yakrware, dan fitur utamanya adalah "This extension adds a number of enhancements to the new rivals message board".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Rivals Board Enhancements

Unduh file ekstensi Rivals Board Enhancements dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Rivals Board Enhancements Rivals Board Enhancements
ID ocolfhpogcchjfldbmjmigpneldphngf
URL Resmi https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf
Deskripsi This extension adds a number of enhancements to the new rivals message board
Ukuran File 42.83 KB
Jumlah Instalasi 1,697
Versi Saat Ini 2.0.3
Terakhir Diperbarui 2020-08-27
Tanggal Publikasi 2016-07-27
Penilaian 4.91/5 Total 34 Penilaian
Pengembang Yakrware
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}