macro_railroad

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

macro_railroadとは何ですか?

macro_railroadはLukas Luegによって開発されたChromeの拡張機能で、その主な機能は「Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

macro_railroad拡張機能のCRXファイルをダウンロード

macro_railroad拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 macro_railroad macro_railroad
ID jeinhnlccpembeoccdhdpnolnmkfcblp
公式URL https://chromewebstore.google.com/detail/macrorailroad/jeinhnlccpembeoccdhdpnolnmkfcblp
説明 Generate syntax diagrams for `macro_rules!()` on docs.rs and doc.rust-lang.org
ファイルサイズ 90.43 KB
インストール数 121
現在のバージョン 0.0.7
最終更新日 2022-08-12
公開日 2020-03-02
評価 5.00/5 合計 4 レビュー
開発者 Lukas Lueg
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/lukaslueg/macro_railroad_ext
ヘルプページのURL https://github.com/lukaslueg/macro_railroad_ext/issues
対応言語 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"
    ]
}