Grids & Rulers

Create grids and rulers overlays to help develop your web applications

Co to jest Grids & Rulers?

Grids & Rulers to rozszerzenie Chrome opracowane przez https://jeremie.patonnier.net, a jego główną funkcją jest „Create grids and rulers overlays to help develop your web applications”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Grids & Rulers

Pobierz pliki rozszerzeń Grids & Rulers w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Grids & Rulers Grids & Rulers
ID kaippllfihpjicemabbbcljbmcpccabl
Oficjalny URL https://chromewebstore.google.com/detail/grids-rulers/kaippllfihpjicemabbbcljbmcpccabl
Opis Create grids and rulers overlays to help develop your web applications
Rozmiar pliku 31.24 KB
Liczba instalacji 4,203
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2020-05-22
Data Publikacji 2020-05-22
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://jeremie.patonnier.net
Typ Płatności free
Strona Rozszerzenia https://github.com/JeremiePat/grids-and-rulers
Adres URL Strony Pomocy https://github.com/JeremiePat/grids-and-rulers
Obsługiwane Języki 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"
}