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) là gì?

Local SHTML Processor (Server Side Includes) là một tiện ích mở rộng Chrome được phát triển bởi Joris Van den Bogaert, và tính năng chính của nó là "A content script that interprets local .shtml files (only directives include, set and echo).".

Tải xuống tệp CRX của tiện ích mở rộng Local SHTML Processor (Server Side Includes)

Tải xuống các tệp mở rộng Local SHTML Processor (Server Side Includes) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Local SHTML Processor (Server Side Includes) Local SHTML Processor (Server Side Includes)
ID dmpckkgcdjohejddfcdjmbcmfbocoeki
URL Chính Thức https://chromewebstore.google.com/detail/local-shtml-processor-ser/dmpckkgcdjohejddfcdjmbcmfbocoeki
Mô tả A content script that interprets local .shtml files (only directives include, set and echo).
Kích Thước Tệp 3.63 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-03-20
Ngày Phát Hành 2017-03-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Joris Van den Bogaert
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}