Local SHTML Processor (Server Side Includes)

A content script that interprets local .shtml files (only directives include, set and echo).

Local SHTML Processor (Server Side Includes)とは何ですか?

Local SHTML Processor (Server Side Includes)はJoris Van den Bogaertによって開発されたChromeの拡張機能で、その主な機能は「A content script that interprets local .shtml files (only directives include, set and echo).」です。

Local SHTML Processor (Server Side Includes)拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Thanks, Andrey Gordeyev, for improvement!

Thank you for very useful plugin, I made a little improvement that will not lead to load page twice and remove blinking  (now page is loaded without SSI and then reloaded with included content ).                    

拡張機能の基本情報

名前 Local SHTML Processor (Server Side Includes) Local SHTML Processor (Server Side Includes)
ID dmpckkgcdjohejddfcdjmbcmfbocoeki
公式URL https://chromewebstore.google.com/detail/local-shtml-processor-ser/dmpckkgcdjohejddfcdjmbcmfbocoeki
説明 A content script that interprets local .shtml files (only directives include, set and echo).
ファイルサイズ 3.63 KB
インストール数 22
現在のバージョン 1.1
最終更新日 2017-03-20
公開日 2017-03-20
評価 5.00/5 合計 1 レビュー
開発者 Joris Van den Bogaert
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Local SHTML Processor (Server Side Includes)",
    "description": "A content script that interprets local .shtml files (only directives include, set and echo).",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*.shtml"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}