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 |
| Eメール | [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
} | |