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ファイルをダウンロード

Pokemon Showdown Player Ratings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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