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" ] } |