Everything to Pokémon
Replaces every word with a Pokémon
Was ist Everything to Pokémon?
Everything to Pokémon ist eine Chrome-Erweiterung, die von lukey_q entwickelt wurde, und ihr Hauptmerkmal ist "Replaces every word with a Pokémon".
Erweiterungsscreenshots
Everything to Pokémon-Erweiterungs-CRX-Datei herunterladen
Laden Sie Everything to Pokémon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Changes every word to the name of a Pokémon.
Grundlegende Informationen zur Erweiterung
Name | Everything to Pokémon |
ID | badgmddlemdcnjffifhmamanjibggghe |
Offizielle URL | https://chromewebstore.google.com/detail/everything-to-pok%C3%A9mon/badgmddlemdcnjffifhmamanjibggghe |
Beschreibung | Replaces every word with a Pokémon |
Dateigröße | 67.91 KB |
Installationsanzahl | 138 |
Aktuelle Version | 0.1 |
Letztes Update | 2014-12-18 |
Veröffentlichungsdatum | 2014-12-17 |
Bewertung | 3.85/5 Insgesamt 13 Bewertungen |
Entwickler | lukey_q |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lilkraftwerk/everything-to-pokemon |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Everything to Pok\u00e9mon", "version": "0.1", "description": "Replaces every word with a Pok\u00e9mon", "browser_action": { "default_icon": { "19": "img\/bulbasmall.png", "38": "img\/bulbabig.png" }, "default_title": "Everything To Pok\u00e9mon" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "events.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |