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
Co to jest Measuring Box?
Measuring Box to rozszerzenie Chrome opracowane przez jonny_spry, a jego główną funkcją jest „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”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Measuring Box
Pobierz pliki rozszerzeń Measuring Box w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Oficjalny URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Opis | 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 |
Rozmiar pliku | 86.55 KB |
Liczba instalacji | 115 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-08-11 |
Data Publikacji | 2016-08-11 |
Ocena | 2.00/5 Łącznie 4 Oceny |
Deweloper | jonny_spry |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |