Local SHTML Processor (Server Side Includes)

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

Vad är Local SHTML Processor (Server Side Includes)?

Local SHTML Processor (Server Side Includes) är en Chrome-tillägg utvecklad av Joris Van den Bogaert, och dess huvudfunktion är "A content script that interprets local .shtml files (only directives include, set and echo).".

Ladda ner Local SHTML Processor (Server Side Includes)-förlängningens CRX-fil

Ladda ner Local SHTML Processor (Server Side Includes)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Local SHTML Processor (Server Side Includes) Local SHTML Processor (Server Side Includes)
ID dmpckkgcdjohejddfcdjmbcmfbocoeki
Officiell webbadress https://chromewebstore.google.com/detail/local-shtml-processor-ser/dmpckkgcdjohejddfcdjmbcmfbocoeki
Beskrivning A content script that interprets local .shtml files (only directives include, set and echo).
Filstorlek 3.63 KB
Antal Installationer 22
Aktuell Version 1.1
Senast Uppdaterad 2017-03-20
Publiceringsdatum 2017-03-20
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Joris Van den Bogaert
Betalningssätt free
Stödda Språk 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
}