PrettyPrint
JavaScript and CSS formatter/syntax highlighter
PrettyPrintคืออะไร?
PrettyPrint เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gildas และคุณลักษณะหลักของมันคือ "JavaScript and CSS formatter/syntax highlighter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PrettyPrint
ดาวน์โหลดไฟล์ส่วนขยาย 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
} | |