Script Collider!

JavaScript & CSS Minifier tool that simplifies the merging and minifying process for multiple file sites

Script Collider!란 무엇입니까?

Script Collider!은(는) Samsono에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "JavaScript & CSS Minifier tool that simplifies the merging and minifying process for multiple file sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Script Collider! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simplify your minification process now!

Script Collider automatically detects the JavaScript & CSS files on the current page, merging all your selected items in one file with your preferred minification library.
Minify JavaScript with:
- JSmin [default]
- UglifyJS
- Google Closure Compiler
- YUI/JS
- Javascript-Minifier
- JS Beautifier (unminify)

and CSS with:
- CSSMin
- YUI/CSS [default]
- CSS Beautifier (unminify)

Also...
- Add new JS/CSS files from different URLs with the [+] button. 
- Manage/Track files from multiple projects by saving your settings into "Saved Lists" section.                    

확장 프로그램 기본 정보

이름 Script Collider! Script Collider!
ID mdjopbnjoffpklcheigfancmmgemfbpc
공식 URL https://chrome.google.com/webstore/detail/script-collider/mdjopbnjoffpklcheigfancmmgemfbpc
설명 JavaScript & CSS Minifier tool that simplifies the merging and minifying process for multiple file sites
파일 크기 335 KB
설치 횟수 181
현재 버전 1.0.2
최근 업데이트 2013-07-17
출시 날짜 2013-07-17
평점 2.20/5 총 5 개의 평점
개발자 Samsono
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Script Collider!",
    "description": "JavaScript & CSS Minifier tool that simplifies the merging and minifying process for multiple file sites",
    "version": "1.0.2",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "js\/jquery-1.9.1.min.js",
            "js\/compressor\/jsmin.js",
            "js\/compressor\/uglify.js",
            "js\/compressor\/beautify-css.js",
            "js\/compressor\/beautify.module.js",
            "js\/compressor\/cssmin.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        },
        {
            "css": [
                "css\/content-file.css"
            ],
            "js": [
                "js\/jquery-1.9.1.min.js",
                "js\/content-file.js"
            ],
            "matches": [
                "*:\/\/*\/*js",
                "*:\/\/*\/*css"
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "compressor.html"
    },
    "web_accessible_resources": [
        "images\/check.png",
        "images\/cross.png",
        "images\/loading.gif"
    ]
}