Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Τι είναι το Pokedex Linker;
Το Pokedex Linker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://thepoke.de, και η κύρια λειτουργία του είναι "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Pokedex Linker
Λήψη αρχείων επέκτασης Pokedex Linker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Every good trainer needs the latest information about whatever Pokemon may cross their path. If you happen to stumble across one while browsing the internet, this extension will convert any mentioned name to link for that pokemon on thepoke.de/x/. Hovering over that link will provide a quick peek of that pokemon, it's national dex number, and it's type(s).
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
Επίσημο URL | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Περιγραφή | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
Μέγεθος Αρχείου | 168 KB |
Αριθμός Εγκαταστάσεων | 77 |
Τρέχουσα Έκδοση | 3.6 |
Τελευταία Ενημέρωση | 2020-06-03 |
Ημερομηνία Δημοσίευσης | 2020-06-02 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://thepoke.de |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://thepoke.de/x/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pokedex Linker", "description": "Converts pokemon names to links that open up ThePoke.de\/x\/ with easy access info when you hover over the link.", "version": "3.6", "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png", "512": "icon_512.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "popper.min.js", "tooltip.min.js", "db.js", "content.js" ] } ] } |