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) - это расширение Chrome, разработанное Joris Van den Bogaert, и его основная функция - "A content script that interprets local .shtml files (only directives include, set and echo).".

Скачать файл CRX расширения Local SHTML Processor (Server Side Includes)

Скачайте файлы расширений 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
}