Pokemon Showdown Player Ratings

This extension will get both the user's and their opponent's ratings.

Pokemon Showdown Player Ratings란 무엇입니까?

Pokemon Showdown Player Ratings은(는) Celestavian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will get both the user's and their opponent's ratings."입니다.

확장 프로그램 스크린샷

screenshot

Pokemon Showdown Player Ratings 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Your opponent's rating can be a vital piece of information, and now you can look it up with a simple click of a button! When you're laddering on Pokemon Showdown with this extension installed, just click on the icon in the corner to fetch both your rating and your opponent's rating in the tier you're currently playing in. It also works for spectating matches.

Designed specifically for use on play.pokemonshowdown.com or other hosted PS! servers with a psim.us address.                    

확장 프로그램 기본 정보

이름 Pokemon Showdown Player Ratings Pokemon Showdown Player Ratings
ID dinicgnlokehfhgdpnmochdhhhcfgiga
공식 URL https://chromewebstore.google.com/detail/pokemon-showdown-player-r/dinicgnlokehfhgdpnmochdhhhcfgiga
설명 This extension will get both the user's and their opponent's ratings.
파일 크기 60.32 KB
설치 횟수 605
현재 버전 1.1
최근 업데이트 2017-01-25
출시 날짜 2017-01-24
평점 4.00/5 총 5 개의 평점
개발자 Celestavian
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pokemon Showdown Player Ratings",
    "description": "This extension will get both the user's and their opponent's ratings.",
    "version": "1.1",
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-3.1.1.min.js",
            "bg.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.pokemonshowdown.com\/*",
                "https:\/\/*.pokemonshowdown.com\/*",
                "http:\/\/*.psim.us\/*",
                "https:\/\/*.psim.us\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon16.png",
        "default_title": "Player Information",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*.pokemonshowdown.com\/battle*",
        "https:\/\/*.pokemonshowdown.com\/battle*",
        "http:\/\/*.psim.us\/battle*",
        "https:\/\/*.psim.us\/battle*",
        "tabs",
        "declarativeContent"
    ]
}