Rivals Board Enhancements

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

Qu'est-ce que Rivals Board Enhancements ?

Rivals Board Enhancements est une extension Chrome développée par Yakrware, et sa fonction principale est "This extension adds a number of enhancements to the new rivals message board".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Rivals Board Enhancements

Téléchargez les fichiers d'extension Rivals Board Enhancements au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Rivals Board Enhancements Rivals Board Enhancements
ID ocolfhpogcchjfldbmjmigpneldphngf
URL Officiel https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf
Description This extension adds a number of enhancements to the new rivals message board
Taille du Fichier 42.83 KB
Nombre d'Installations 1,697
Version Actuelle 2.0.3
Dernière Mise à Jour 2020-08-27
Date de Publication 2016-07-27
Évaluation 4.91/5 Total 34 Évaluations
Développeur Yakrware
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}