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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |