Page Ruler

Page Ruler: Draw rulers on web pages to check element alignment in Chrome.

Co je Page Ruler?

Page Ruler je rozšíření Chrome vyvinuté https://sudarshanrai.com.np, a jeho hlavní funkcí je „Page Ruler: Draw rulers on web pages to check element alignment in Chrome.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Page Ruler

Stáhněte si soubory rozšíření Page Ruler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Page Ruler is a browser extension that allows you to draw a ruler on any web page to check the alignment of page elements. With it, you can easily draw line guides to help you align elements. 

To use Page Ruler, simply click on the extension icon in the browser toolbar and enable it, then click on top of the window and drag a line on the page to draw a ruler. You can adjust the ruler's position by dragging the line. You can also use the options menu to change the color and style of the ruler. With Page Ruler, you can quickly and easily check the alignment of your UI elements to ensure that your web page looks professional and well-designed.                    

Základní Informace o Rozšíření

Název Page Ruler Page Ruler
ID eccmicoahcpagbnibfolooaocnlceieg
Oficiální URL https://chromewebstore.google.com/detail/page-ruler/eccmicoahcpagbnibfolooaocnlceieg
Popis Page Ruler: Draw rulers on web pages to check element alignment in Chrome.
Velikost souboru 15.33 KB
Počet instalací 4,257
Aktuální Verze 2.2
Poslední Aktualizace 2023-12-08
Datum Vydání 2023-01-02
Hodnocení 3.80/5 Celkem 10 Hodnocení
Vývojář https://sudarshanrai.com.np
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://chrome-extension-docs.vercel.app/page-ruler/privacy-policy
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Ruler",
    "description": "Page Ruler: Draw rulers on web pages to check element alignment in Chrome.",
    "version": "2.2",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "assets\/default_icon.png"
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/scripts\/utils.js",
                "src\/scripts\/helper.js",
                "src\/scripts\/app.js"
            ],
            "css": [
                "src\/styles\/inject.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}