JSBeautify for Google Chrome™
When you view a JavaScript file, Clippy will ask you if you want to format it.
JSBeautify for Google Chrome™คืออะไร?
JSBeautify for Google Chrome™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Rix และคุณลักษณะหลักของมันคือ "When you view a JavaScript file, Clippy will ask you if you want to format it."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSBeautify for Google Chrome™
ดาวน์โหลดไฟล์ส่วนขยาย JSBeautify for Google Chrome™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extensions builds off of Einar Lielmanis's JSBeautifier project. If you view a JavaScript file in your browser, you will be given the option to format it. You can set specific formatting settings in the options page of the extension. The source code for this extension is available on GitHub at https://github.com/rixth/jsbeautify-for-chrome Logo by Clement Ng, http://clmnt.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | JSBeautify for Google Chrome™ |
ID | kkioiolcacgoihiiekambdciinadbpfk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk |
คำอธิบาย | When you view a JavaScript file, Clippy will ask you if you want to format it. |
ขนาดไฟล์ | 37.22 KB |
จำนวนการติดตั้ง | 7,691 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2013-01-14 |
วันที่เผยแพร่ | 2013-01-13 |
คะแนน | 3.72/5 รวมทั้งหมด 53 คะแนน |
ผู้พัฒนา | Thomas Rix |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://rixth.org |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSBeautify for Google Chrome\u2122", "version": "1.0.2", "manifest_version": 2, "description": "When you view a JavaScript file, Clippy will ask you if you want to format it.", "icons": { "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "background": { "scripts": [ "javascripts\/options_server.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*.js*", "https:\/\/*\/*.js*", "ftp:\/\/*\/*.js*", "file:\/\/*\/*.js*" ], "run_at": "document_end", "css": [ "stylesheets\/application.css" ], "js": [ "javascripts\/application.js" ] } ], "options_page": "html\/options_page.html", "web_accessible_resources": [ "assets\/its-clippy-motherfuckers.png" ] } |