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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will get both the user's and their opponent's ratings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pokemon Showdown Player Ratings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |