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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}