Grids & Rulers

Create grids and rulers overlays to help develop your web applications

Was ist Grids & Rulers?

Grids & Rulers ist eine Chrome-Erweiterung, die von https://jeremie.patonnier.net entwickelt wurde, und ihr Hauptmerkmal ist "Create grids and rulers overlays to help develop your web applications".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Grids & Rulers-Erweiterungs-CRX-Datei herunterladen

Laden Sie Grids & Rulers-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

                        Grids & Ruler is an extension that add a new panel to Chrome developer tools. That panel let you create and manage overlays on pages that provide you visual hints to develop you web app layouts.                    

Grundlegende Informationen zur Erweiterung

Name Grids & Rulers Grids & Rulers
ID kaippllfihpjicemabbbcljbmcpccabl
Offizielle URL https://chromewebstore.google.com/detail/grids-rulers/kaippllfihpjicemabbbcljbmcpccabl
Beschreibung Create grids and rulers overlays to help develop your web applications
Dateigröße 31.24 KB
Installationsanzahl 4,203
Aktuelle Version 2.0
Letztes Update 2020-05-22
Veröffentlichungsdatum 2020-05-22
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://jeremie.patonnier.net
Zahlungsart free
Erweiterungswebsite https://github.com/JeremiePat/grids-and-rulers
Hilfeseite URL https://github.com/JeremiePat/grids-and-rulers
Unterstützte Sprachen en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.0",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "64": "img\/icon.64.png",
        "96": "img\/icon.96.png",
        "128": "img\/icon.128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "lib\/chrome-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/chrome-polyfill.js",
                "content\/js\/grids.js",
                "content\/js\/rulers.js",
                "content\/main.js"
            ],
            "css": [
                "content\/css\/grids.css",
                "content\/css\/rulers.css"
            ]
        }
    ],
    "devtools_page": "devtools.html"
}