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 |
官方網址 | 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 } |