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™是由Thomas Rix开发的Chrome扩展程序,该扩展的主要功能是“When you view a JavaScript file, Clippy will ask you if you want to format it.”。
扩展截图
下载JSBeautify for Google Chrome™扩展crx文件
下载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" ] } |