macro_railroad

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

Wat is macro_railroad?

macro_railroad is een Chrome-extensie ontwikkeld door Lukas Lueg, en de belangrijkste functie is "Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie macro_railroad

Download macro_railroad-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam macro_railroad macro_railroad
ID jeinhnlccpembeoccdhdpnolnmkfcblp
Officiële URL https://chromewebstore.google.com/detail/macrorailroad/jeinhnlccpembeoccdhdpnolnmkfcblp
Beschrijving Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org
Bestandsgrootte 90.43 KB
Aantal Installaties 121
Huidige Versie 0.0.7
Laatst Bijgewerkt 2022-08-12
Publicatiedatum 2020-03-02
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Lukas Lueg
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lukaslueg/macro_railroad_ext
Help Pagina-URL https://github.com/lukaslueg/macro_railroad_ext/issues
Ondersteunde Talen 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"
    ]
}