macro_railroad

Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org

Co je macro_railroad?

macro_railroad je rozšíření Chrome vyvinuté Lukas Lueg, a jeho hlavní funkcí je „Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření macro_railroad

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

                        Using the `macro_railroad`-library this extension generates syntax diagrams for all macros generated by `rustdoc`. The diagrams are shown beneath each macro-block.

**Note**: The only reason this extension requests access to `file:///*` is local documentation. No data is ever transferred.

Use the icons in the lower right corner to control options and expand the diagram to fullscreen.

This extension is open source, contributions are very welcome: https://github.com/lukaslueg/macro_railroad_ext                    

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

Název macro_railroad macro_railroad
ID jeinhnlccpembeoccdhdpnolnmkfcblp
Oficiální URL https://chromewebstore.google.com/detail/macrorailroad/jeinhnlccpembeoccdhdpnolnmkfcblp
Popis Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org
Velikost souboru 90.43 KB
Počet instalací 121
Aktuální Verze 0.0.7
Poslední Aktualizace 2022-08-12
Datum Vydání 2020-03-02
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Lukas Lueg
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/lukaslueg/macro_railroad_ext
URL Stránky Nápovědy https://github.com/lukaslueg/macro_railroad_ext/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "macro_railroad",
    "version": "0.0.7",
    "description": "Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org",
    "author": "Lukas Lueg ",
    "icons": {
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.docs.rs\/*",
                "*:\/\/doc.rust-lang.org\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content_scripts\/macro_railroad_ext.js",
                "content_scripts\/main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "web_accessible_resources": [
        "wasm\/macro_railroad_ext.wasm",
        "assets\/fullscreen.svg",
        "assets\/options.svg",
        "assets\/macro_railroad_ext.css"
    ]
}