Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Showdown Helper क्या है?
Showdown Helper garvey.nick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds UI elements to Pokemon Showdown for easier battles"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Showdown Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Showdown Helper is a Chrome extension that adds utilities to the Pokemon Showdown UI. Feature List: * Clicking on a Pokemon in the team list will go directly to the Smogon page for it. * Show a notification on battle end * That's it for now :) https://github.com/nickgarvey/showdown-helper
एक्सटेंशन की मूल जानकारी
नाम | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
आधिकारिक URL | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
विवरण | Adds UI elements to Pokemon Showdown for easier battles |
फ़ाइल का आकार | 54.8 KB |
स्थापना संख्या | 192 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2020-08-13 |
प्रकाशन तिथि | 2020-08-12 |
डेवलपर | garvey.nick |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nickgarvey/showdown-helper |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Showdown Helper", "version": "1.2.0", "description": "Adds UI elements to Pokemon Showdown for easier battles", "manifest_version": 2, "permissions": [ "declarativeContent", "notifications", "https:\/\/www.smogon.com\/", "https:\/\/play.pokemonshowdown.com\/" ], "background": { "scripts": [ "toggle_icon.js", "handle_message.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/play.pokemonshowdown.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "page_action": { "default_icon": "icon.png" } } |