Rivals Board Enhancements
This extension adds a number of enhancements to the new rivals message board
Was ist Rivals Board Enhancements?
Rivals Board Enhancements ist eine Chrome-Erweiterung, die von Yakrware entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds a number of enhancements to the new rivals message board".
Erweiterungsscreenshots
Rivals Board Enhancements-Erweiterungs-CRX-Datei herunterladen
Laden Sie Rivals Board Enhancements-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ocolfhpogcchjfldbmjmigpneldphngf |
| Offizielle URL | https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf |
| Beschreibung | This extension adds a number of enhancements to the new rivals message board |
| Dateigröße | 42.83 KB |
| Installationsanzahl | 1,697 |
| Aktuelle Version | 2.0.3 |
| Letztes Update | 2020-08-27 |
| Veröffentlichungsdatum | 2016-07-27 |
| Bewertung | 4.91/5 Insgesamt 34 Bewertungen |
| Entwickler | Yakrware |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
} | |