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
}