PrettyPrint
JavaScript and CSS formatter/syntax highlighter
PrettyPrint là gì?
PrettyPrint là một tiện ích mở rộng Chrome được phát triển bởi gildas, và tính năng chính của nó là "JavaScript and CSS formatter/syntax highlighter".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PrettyPrint
Tải xuống các tệp mở rộng PrettyPrint dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension is based on : - Webkit syntax highlighter - jsbeautifier (http://jsbeautifier.org) - cssbeautify (http://senchalabs.github.com/cssbeautify/)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
URL Chính Thức | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
Mô tả | JavaScript and CSS formatter/syntax highlighter |
Kích Thước Tệp | 56.62 KB |
Số Lần Cài Đặt | 17,966 |
Phiên Bản Hiện Tại | 0.0.25 |
Cập Nhật Lần Cuối | 2012-11-02 |
Ngày Phát Hành | 2012-11-02 |
Đánh Giá | 3.86/5 Tổng số 100 Đánh Giá |
Nhà Phát Triển | gildas |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gildas-lormeau/PrettyPrint |
URL Trang Trợ Giúp | https://github.com/gildas-lormeau/PrettyPrint/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Ngôn Ngữ Được Hỗ Trợ | 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 } |