Gist Previewer
Preview gist html/js/css code.
什么是Gist Previewer?
Gist Previewer是由David Orr开发的Chrome扩展程序,该扩展的主要功能是“Preview gist html/js/css code.”。
扩展截图
下载Gist Previewer扩展crx文件
下载Gist Previewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | akkophfgoandjomabfeppbnbgmejaofc |
| 官方URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
| 简介 | Preview gist html/js/css code. |
| 文件大小 | 11.01 KB |
| 安装次数 | 92 |
| 当前版本 | 2.0.0 |
| 更新时间 | 2017-04-03 |
| 上架时间 | 2017-04-02 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | David Orr |
| 付费类型 | free |
| 帮助页面URL | https://github.com/davidyorr/gist-previewer |
| 支持的语言 | 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
} | |