Local SHTML Processor (Server Side Includes)

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

Apa itu Local SHTML Processor (Server Side Includes)?

Local SHTML Processor (Server Side Includes) adalah ekstensi Chrome yang dikembangkan oleh Joris Van den Bogaert, dan fitur utamanya adalah "A content script that interprets local .shtml files (only directives include, set and echo).".

Unduh Berkas CRX Ekstensi Local SHTML Processor (Server Side Includes)

Unduh file ekstensi Local SHTML Processor (Server Side Includes) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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 ).                    

Informasi Dasar Ekstensi

Nama Local SHTML Processor (Server Side Includes) Local SHTML Processor (Server Side Includes)
ID dmpckkgcdjohejddfcdjmbcmfbocoeki
URL Resmi https://chromewebstore.google.com/detail/local-shtml-processor-ser/dmpckkgcdjohejddfcdjmbcmfbocoeki
Deskripsi A content script that interprets local .shtml files (only directives include, set and echo).
Ukuran File 3.63 KB
Jumlah Instalasi 22
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-03-20
Tanggal Publikasi 2017-03-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Joris Van den Bogaert
Tipe Pembayaran free
Bahasa yang Didukung 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
}