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" ] } ] } |