Page Ruler

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

Was ist Page Ruler?

Page Ruler ist eine Chrome-Erweiterung, die von Page Ruler entwickelt wurde, und ihr Hauptmerkmal ist "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.".

Erweiterungsscreenshots

screenshot
screenshot

Page Ruler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Page Ruler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Page Ruler Page Ruler
ID idhjfgkakeliobkfbijghiaklmiaheag
Offizielle URL https://chrome.google.com/webstore/detail/page-ruler/idhjfgkakeliobkfbijghiaklmiaheag
Beschreibung Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.
Dateigröße 92.3 KB
Installationsanzahl 54,686
Aktuelle Version 2.0.0
Letztes Update 2023-06-06
Veröffentlichungsdatum 2018-07-29
Bewertung 1.25/5 Insgesamt 71 Bewertungen
Entwickler Page Ruler
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}