Page Ruler

Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.

Cos'è Page Ruler?

Page Ruler è un'estensione di Chrome sviluppata da Page Ruler, e la sua funzione principale è "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Page Ruler

Scarica i file di estensione Page Ruler 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

                        Page Ruler is popular app for measuring elements on web pages. Measure it width and height in pixels on any websites.

Click the icon and draw ruler to get pixel dimensions. The color icon means the on mode for measuremen. The black and white icon means off.

Thank you for installation and please give Page Ruler five stars!                    

Informazioni di Base sull'Estensione

Nome Page Ruler Page Ruler
ID idhjfgkakeliobkfbijghiaklmiaheag
URL Ufficiale https://chrome.google.com/webstore/detail/page-ruler/idhjfgkakeliobkfbijghiaklmiaheag
Descrizione Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.
Dimensione del File 92.3 KB
Conteggio Installazioni 54,686
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-06-06
Data di Pubblicazione 2018-07-29
Valutazione 1.25/5 Totale 71 Valutazioni
Sviluppatore Page Ruler
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "off.png",
        "default_title": "Page Ruler"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.",
    "manifest_version": 3,
    "name": "Page Ruler",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "2.0.0",
    "icons": {
        "48": "ico_48.png",
        "16": "ico_16.png",
        "128": "ico_128.png",
        "19": "ico_19.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "injected_content.js"
            ]
        }
    ]
}