Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Apa itu Showdown Helper?
Showdown Helper adalah ekstensi Chrome yang dikembangkan oleh garvey.nick, dan fitur utamanya adalah "Adds UI elements to Pokemon Showdown for easier battles".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Showdown Helper
Unduh file ekstensi Showdown Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
URL Resmi | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
Deskripsi | Adds UI elements to Pokemon Showdown for easier battles |
Ukuran File | 54.8 KB |
Jumlah Instalasi | 192 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2020-08-13 |
Tanggal Publikasi | 2020-08-12 |
Pengembang | garvey.nick |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/nickgarvey/showdown-helper |
Bahasa yang Didukung | 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" } } |