Word Extender
Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design
Word Extenderคืออะไร?
Word Extender เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erik Häyry และคุณลักษณะหลักของมันคือ "Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Extender
ดาวน์โหลดไฟล์ส่วนขยาย Word Extender ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When you quickly want to check how your links, buttons, menus etc looks with longer words or sentences. The extension can also be handy when you want to test your website for multiple languages or developing for responsive design. The extensions finds words or sentences on your page and convert them to longer ones.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Word Extender |
ID | acbnhhgmoaadadkeappeicndifpbjjel |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/word-extender/acbnhhgmoaadadkeappeicndifpbjjel |
คำอธิบาย | Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design |
ขนาดไฟล์ | 18.17 KB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2013-08-08 |
วันที่เผยแพร่ | 2013-08-08 |
ผู้พัฒนา | Erik Häyry |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word Extender", "description": "Extension that replaces strings and\/or words with longer ones. This can be handy when developing for responsive design", "version": "1.1", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "http:\/\/*\/*", "activeTab" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "name": "Extend words", "default_icon": "icons\/icon16.png", "default_title": "Word Extender", "default_popup": "popup.html" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/page.css" ] } ] } |