Grids & Rulers

Create grids and rulers overlays to help develop your web applications

Co je Grids & Rulers?

Grids & Rulers je rozšíření Chrome vyvinuté https://jeremie.patonnier.net, a jeho hlavní funkcí je „Create grids and rulers overlays to help develop your web applications“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Grids & Rulers

Stáhněte si soubory rozšíření Grids & Rulers 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í

                        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.                    

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

Název Grids & Rulers Grids & Rulers
ID kaippllfihpjicemabbbcljbmcpccabl
Oficiální URL https://chromewebstore.google.com/detail/grids-rulers/kaippllfihpjicemabbbcljbmcpccabl
Popis Create grids and rulers overlays to help develop your web applications
Velikost souboru 31.24 KB
Počet instalací 4,203
Aktuální Verze 2.0
Poslední Aktualizace 2020-05-22
Datum Vydání 2020-05-22
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://jeremie.patonnier.net
Typ Platby free
Webové stránky Rozšíření https://github.com/JeremiePat/grids-and-rulers
URL Stránky Nápovědy https://github.com/JeremiePat/grids-and-rulers
Podporované Jazyky 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"
}