MeasureIt!
MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.
Cos'è MeasureIt!?
MeasureIt! è un'estensione di Chrome sviluppata da Online Apps, e la sua funzione principale è "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MeasureIt!
Scarica i file di estensione MeasureIt! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
MeasureIt shows positioning and dimensions in pixel points. You can measure height and width of elements on web page. HOW IT WORKS • Click to the icon of app on the current web page. • Draw ruler page and shows width, height, positioning of element. • Click the icon again to exit the measurement.
Informazioni di Base sull'Estensione
Nome | MeasureIt! |
ID | keoagpbljgpdoldcmfpgicnpijmfompi |
URL Ufficiale | https://chromewebstore.google.com/detail/measureit/keoagpbljgpdoldcmfpgicnpijmfompi |
Descrizione | MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels. |
Dimensione del File | 103 KB |
Conteggio Installazioni | 12,336 |
Versione Corrente | 1.2.4 |
Ultimo Aggiornamento | 2022-10-05 |
Data di Pubblicazione | 2020-06-13 |
Valutazione | 1.97/5 Totale 37 Valutazioni |
Sviluppatore | Online Apps |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "jquery.min.js", "backgroundMeasureIt.js" ] }, "browser_action": { "default_icon": "off.png", "default_title": "MeasureIt" }, "content_scripts": [ { "all_frames": false, "css": [ "styleMeasureIt.css" ], "js": [ "measureIt.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "description": "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.", "manifest_version": 2, "name": "MeasureIt!", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "1.2.4", "icons": { "48": "ico_48.png", "128": "ico_128.png" } } |