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
Apa itu Measuring Box?
Measuring Box adalah ekstensi Chrome yang dikembangkan oleh jonny_spry, dan fitur utamanya adalah "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".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Measuring Box
Unduh file ekstensi Measuring Box dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Resmi | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Deskripsi | 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 |
Ukuran File | 86.55 KB |
Jumlah Instalasi | 115 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2016-08-11 |
Tanggal Publikasi | 2016-08-11 |
Penilaian | 2.00/5 Total 4 Penilaian |
Pengembang | jonny_spry |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |