Metercon
Live value converter
ما هو Metercon؟
Metercon هو إضافة Chrome تم تطويرها بواسطة Igor Novikov، والميزة الرئيسية لها هي "Live value converter".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Metercon
قم بتنزيل ملفات الامتداد Metercon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Convert feet to meters and meters to feet. This extension will automatically convert length values in Metric system to Imperial system and vise versa. Go to Metercon options to switch the conversion type. The converted value will be added after the original value between the symbols: '<' and'>'. Special thanks to Ilya Kaplan for major bug fix and syntax improvements. More conversion types might be available in the future, depending on reviews. Any review will be appreciated.
معلومات أساسية عن التمديد
الاسم | Metercon |
ID | kcgihdenhomlcaoakbdgecdlnbfmlnhl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl |
الوصف | Live value converter |
حجم الملف | 16.01 KB |
عدد التثبيتات | 11 |
النسخة الحالية | 0.1 |
آخر تحديث | 2016-03-07 |
تاريخ النشر | 2016-03-07 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | Igor Novikov |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Metercon", "version": "0.1", "manifest_version": 2, "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "description": "Live value converter", "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "convert.js" ], "run_at": "document_end" } ] } |