Measuring Box
On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is
ما هو Measuring Box؟
Measuring Box هو إضافة Chrome تم تطويرها بواسطة jonny_spry، والميزة الرئيسية لها هي "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Measuring Box
قم بتنزيل ملفات الامتداد Measuring Box بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Use the mouse to click and drag over an area of the webpage to measure the content underneath. This also tells you what the aspect ratio is.
معلومات أساسية عن التمديد
الاسم | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
الوصف | On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is |
حجم الملف | 86.55 KB |
عدد التثبيتات | 115 |
النسخة الحالية | 1.0 |
آخر تحديث | 2016-08-11 |
تاريخ النشر | 2016-08-11 |
تقييم | 2.00/5 مجموع تقييمات 4 |
المطور | jonny_spry |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Measuring Box", "description": "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is", "version": "1.0", "browser_action": { "default_icon": "box.png", "default_title": "icon" }, "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "contentScript.js" ] } ], "permissions": [ "activeTab" ] } |