PrettyPrint
JavaScript and CSS formatter/syntax highlighter
什么是PrettyPrint?
PrettyPrint是由gildas开发的Chrome扩展程序,该扩展的主要功能是“JavaScript and CSS formatter/syntax highlighter”。
扩展截图
下载PrettyPrint扩展crx文件
下载PrettyPrint扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is based on :
- Webkit syntax highlighter
- jsbeautifier (http://jsbeautifier.org)
- cssbeautify (http://senchalabs.github.com/cssbeautify/) 扩展基本信息
| 名称 | |
| ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
| 官方URL | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
| 简介 | JavaScript and CSS formatter/syntax highlighter |
| 文件大小 | 56.62 KB |
| 安装次数 | 17,966 |
| 当前版本 | 0.0.25 |
| 更新时间 | 2012-11-02 |
| 上架时间 | 2012-11-02 |
| 评分 | 3.86/5 共100次评分 |
| 开发者 | gildas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/gildas-lormeau/PrettyPrint |
| 帮助页面URL | https://github.com/gildas-lormeau/PrettyPrint/issues |
| 隐私政策页面URL | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PrettyPrint",
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"version": "0.0.25",
"description": "JavaScript and CSS formatter\/syntax highlighter",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*"
],
"js": [
"bootstrap.js"
],
"run_at": "document_end"
},
{
"matches": [
"file:\/\/\/*"
],
"js": [
"content.js",
"bootstrap.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"permissions": [
"contextMenus",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/",
"ftp:\/\/*\/"
],
"manifest_version": 2
} | |