Page Ruler

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

Τι είναι το Page Ruler;

Το Page Ruler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sudarshanrai.com.np, και η κύρια λειτουργία του είναι "Page Ruler: Draw rulers on web pages to check element alignment in Chrome.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Page Ruler

Λήψη αρχείων επέκτασης Page Ruler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Page Ruler Page Ruler
ID eccmicoahcpagbnibfolooaocnlceieg
Επίσημο URL https://chromewebstore.google.com/detail/page-ruler/eccmicoahcpagbnibfolooaocnlceieg
Περιγραφή Page Ruler: Draw rulers on web pages to check element alignment in Chrome.
Μέγεθος Αρχείου 15.33 KB
Αριθμός Εγκαταστάσεων 4,257
Τρέχουσα Έκδοση 2.2
Τελευταία Ενημέρωση 2023-12-08
Ημερομηνία Δημοσίευσης 2023-01-02
Αξιολόγηση 3.80/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής https://sudarshanrai.com.np
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://chrome-extension-docs.vercel.app/page-ruler/privacy-policy
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
            ]
        }
    ]
}