Local SHTML Processor (Server Side Includes)
A content script that interprets local .shtml files (only directives include, set and echo).
What is Local SHTML Processor (Server Side Includes)?
Local SHTML Processor (Server Side Includes) is a Chrome extension developed by Joris Van den Bogaert, and its main feature is "A content script that interprets local .shtml files (only directives include, set and echo).".
Download Local SHTML Processor (Server Side Includes) Extension CRX File
Download Local SHTML Processor (Server Side Includes) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 ).
Extension Basic Information
Name | Local SHTML Processor (Server Side Includes) |
ID | dmpckkgcdjohejddfcdjmbcmfbocoeki |
Official URL | https://chromewebstore.google.com/detail/local-shtml-processor-ser/dmpckkgcdjohejddfcdjmbcmfbocoeki |
Description | A content script that interprets local .shtml files (only directives include, set and echo). |
File Size | 3.63 KB |
Installation Count | 22 |
Current Version | 1.1 |
Last Updated | 2017-03-20 |
Publish Date | 2017-03-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Joris Van den Bogaert |
Payment Type | free |
Supported Languages | 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 } |