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 là gì?
Measuring Box là một tiện ích mở rộng Chrome được phát triển bởi jonny_spry, và tính năng chính của nó là "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".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Measuring Box
Tải xuống các tệp mở rộng Measuring Box dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Chính Thức | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Mô tả | 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 |
Kích Thước Tệp | 86.55 KB |
Số Lần Cài Đặt | 115 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-08-11 |
Ngày Phát Hành | 2016-08-11 |
Đánh Giá | 2.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | jonny_spry |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |