MeasureIt!

MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.

Vad är MeasureIt!?

MeasureIt! är en Chrome-tillägg utvecklad av Online Apps, och dess huvudfunktion är "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.".

Tilläggsskärmbilder

screenshot

Ladda ner MeasureIt!-förlängningens CRX-fil

Ladda ner MeasureIt!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn MeasureIt! MeasureIt!
ID keoagpbljgpdoldcmfpgicnpijmfompi
Officiell webbadress https://chromewebstore.google.com/detail/measureit/keoagpbljgpdoldcmfpgicnpijmfompi
Beskrivning MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.
Filstorlek 103 KB
Antal Installationer 12,336
Aktuell Version 1.2.4
Senast Uppdaterad 2022-10-05
Publiceringsdatum 2020-06-13
Betyg 1.97/5 Totalt 37 Betyg
Utvecklare Online Apps
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}