Pokémon Showdown Enhanced Tooltips
Displays additional information on tooltips of Pokémon Showdown.
Τι είναι το Pokémon Showdown Enhanced Tooltips;
Το Pokémon Showdown Enhanced Tooltips είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον generisk, και η κύρια λειτουργία του είναι "Displays additional information on tooltips of Pokémon Showdown.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Pokémon Showdown Enhanced Tooltips
Λήψη αρχείων επέκτασης Pokémon Showdown Enhanced Tooltips σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
NOTE!! - This is an updated version, as the original dev has not updated this project. Displays additional information on tooltips of Pokémon Showdown. Enhanced tooltips for Pokemon Showdown. This extension provides additional information and functionality on the tooltips of Pokemon. Please try turning base stats on/off if the extension doesn't seem to be working. If the issue persists, please submit an issue on Github. - Type effectiveness and respective multipliers - Move type and category (physical or special) icons - Height and weight - Move base power - Click Pokemon name to open their Smogon page in a new tab - Base stats (optional) Optional settings can be configured in the extension panel. Thanks to all those contributed to the project: Karl Hughes - https://github.com/karllhughes Also huge thanks to Chris Schalago as the original creator of this addon. - https://github.com/rowin1/Pokemon-Showdown-Enhanced-Tooltips If you would like to open an issue or contribute, please see the repo on Github: https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | aggbolenhnpdhgcfpknifdiheppbmblb |
Επίσημο URL | https://chrome.google.com/webstore/detail/pok%C3%A9mon-showdown-enhanced/aggbolenhnpdhgcfpknifdiheppbmblb |
Περιγραφή | Displays additional information on tooltips of Pokémon Showdown. |
Μέγεθος Αρχείου | 38.39 KB |
Αριθμός Εγκαταστάσεων | 1,000 |
Τρέχουσα Έκδοση | 1.2.1.1 |
Τελευταία Ενημέρωση | 2021-05-05 |
Ημερομηνία Δημοσίευσης | 2021-04-21 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | generisk |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pok\u00e9mon Showdown Enhanced Tooltips", "description": "Displays additional information on tooltips of Pok\u00e9mon Showdown.", "version": "1.2.1.1", "manifest_version": 2, "icons": { "16": "\/icons\/icon.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "64": "\/icons\/icon64.png", "128": "\/icons\/icon128.png" }, "background": { "scripts": [ "\/js\/settingsMenu.js" ] }, "browser_action": { "default_icon": "\/icons\/icon.png" }, "permissions": [ "contextMenus", "storage", "*:\/\/play.pokemonshowdown.com\/*", "*:\/\/*.psim.us\/*" ], "web_accessible_resources": [ "\/js\/showPokemonTooltip.js" ], "content_scripts": [ { "matches": [ "*:\/\/play.pokemonshowdown.com\/*", "*:\/\/*.psim.us\/*" ], "css": [ "\/css\/style.css" ], "js": [ "\/js\/main.js" ] } ] } |