Everything to Pokémon
Replaces every word with a Pokémon
Vad är Everything to Pokémon?
Everything to Pokémon är en Chrome-tillägg utvecklad av lukey_q, och dess huvudfunktion är "Replaces every word with a Pokémon".
Tilläggsskärmbilder
Ladda ner Everything to Pokémon-förlängningens CRX-fil
Ladda ner Everything to Pokémon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Changes every word to the name of a Pokémon. Grundläggande Information om Tillägg
| Namn | |
| ID | badgmddlemdcnjffifhmamanjibggghe |
| Officiell webbadress | https://chromewebstore.google.com/detail/everything-to-pok%C3%A9mon/badgmddlemdcnjffifhmamanjibggghe |
| Beskrivning | Replaces every word with a Pokémon |
| Filstorlek | 67.91 KB |
| Antal Installationer | 138 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2014-12-18 |
| Publiceringsdatum | 2014-12-17 |
| Betyg | 3.85/5 Totalt 13 Betyg |
| Utvecklare | lukey_q |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/lilkraftwerk/everything-to-pokemon |
| Stödda Språk | 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"
}
]
} | |