Gist Previewer
Preview gist html/js/css code.
What is Gist Previewer?
Gist Previewer is a Chrome extension developed by David Orr, and its main feature is "Preview gist html/js/css code.".
Extension Screenshots
Download Gist Previewer Extension CRX File
Download Gist Previewer 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
Renders Gist repos that contain HTML, JavaScript, or CSS files. Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.
Extension Basic Information
Name | Gist Previewer |
ID | akkophfgoandjomabfeppbnbgmejaofc |
Official URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
Description | Preview gist html/js/css code. |
File Size | 11.01 KB |
Installation Count | 92 |
Current Version | 2.0.0 |
Last Updated | 2017-04-03 |
Publish Date | 2017-04-02 |
Rating | 5.00/5 Total 1 Ratings |
Developer | David Orr |
Payment Type | free |
Help Page URL | https://github.com/davidyorr/gist-previewer |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gist Previewer", "description": "Preview gist html\/js\/css code.", "version": "2.0.0", "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "js\/gistpreviewer.js" ], "css": [ "css\/gistpreviewer.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "manifest_version": 2 } |