Measure-it

Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.

Vad är Measure-it?

Measure-it är en Chrome-tillägg utvecklad av trishul.goel, och dess huvudfunktion är "Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.".

Tilläggsskärmbilder

screenshot

Ladda ner Measure-it-förlängningens CRX-fil

Ladda ner Measure-it-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

                        Customize the overlay and selector from extension options.                    

Grundläggande Information om Tillägg

Namn Measure-it Measure-it
ID jocbgkoackihphodedlefohapackjmna
Officiell webbadress https://chromewebstore.google.com/detail/measure-it/jocbgkoackihphodedlefohapackjmna
Beskrivning Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.
Filstorlek 19.9 KB
Antal Installationer 74,144
Aktuell Version 2.1.0
Senast Uppdaterad 2018-12-23
Publiceringsdatum 2018-12-23
Betyg 3.86/5 Totalt 36 Betyg
Utvecklare trishul.goel
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tsl143/measure-it
Hjälpsida URL https://github.com/tsl143/measure-it/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Measure-it",
    "description": "Draw a ruler across any webpage to check the width, height, or alignment of page elements in pixels.",
    "version": "2.1.0",
    "icons": {
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon_32.png",
        "default_title": "Measure-it"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "commands": {
        "open-measure-it": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Open MeasureIt"
        }
    }
}