Everything to Pokémon
Replaces every word with a Pokémon
ما هو Everything to Pokémon؟
Everything to Pokémon هو إضافة Chrome تم تطويرها بواسطة lukey_q، والميزة الرئيسية لها هي "Replaces every word with a Pokémon".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Everything to Pokémon
قم بتنزيل ملفات الامتداد Everything to Pokémon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Changes every word to the name of a Pokémon.
معلومات أساسية عن التمديد
الاسم | Everything to Pokémon |
ID | badgmddlemdcnjffifhmamanjibggghe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/everything-to-pok%C3%A9mon/badgmddlemdcnjffifhmamanjibggghe |
الوصف | Replaces every word with a Pokémon |
حجم الملف | 67.91 KB |
عدد التثبيتات | 138 |
النسخة الحالية | 0.1 |
آخر تحديث | 2014-12-18 |
تاريخ النشر | 2014-12-17 |
تقييم | 3.85/5 مجموع تقييمات 13 |
المطور | lukey_q |
نوع الدفع | free |
موقع الإضافة | https://github.com/lilkraftwerk/everything-to-pokemon |
اللغات المدعومة | 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" } ] } |