JavaScript Libraries On the fly!

Load JavaScript libraries to current page on the fly for testing or trying something!

JavaScript Libraries On the fly!란 무엇입니까?

JavaScript Libraries On the fly!은(는) Pawan Chopra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load JavaScript libraries to current page on the fly for testing or trying something!"입니다.

확장 프로그램 스크린샷

screenshot

JavaScript Libraries On the fly! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is useful for developers who love to do experiments with JavaScript libraries. Using this extension you can load popular JavaScript libraries in current tab context. I implemented this for my daily use. When I read some blog or some tutorial about popular libraries like Backbone, Angular JS. I really like to use that library in chrome developer tool and try few things. Instead of going to editor and create some html file and doing couple of steps to try some thing in my favorite library.

See video at

https://www.youtube.com/watch?v=DbZYhArBzqM&feature=youtube_gdata_player                    

확장 프로그램 기본 정보

이름 JavaScript Libraries On the fly! JavaScript Libraries On the fly!
ID hbamkklhfcfijoadciojpjbgpinfbofi
공식 URL https://chromewebstore.google.com/detail/javascript-libraries-on-t/hbamkklhfcfijoadciojpjbgpinfbofi
설명 Load JavaScript libraries to current page on the fly for testing or trying something!
파일 크기 50.86 KB
설치 횟수 206
현재 버전 0.0.40
최근 업데이트 2014-03-28
출시 날짜 2014-03-27
평점 5.00/5 총 1 개의 평점
개발자 Pawan Chopra
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaScript Libraries On the fly!",
    "version": "0.0.40",
    "manifest_version": 2,
    "description": "Load JavaScript libraries to current page on the fly for testing or trying something!",
    "permissions": [
        "tabs",
        "",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "scripts\/load.js",
        "scripts\/jquery-1.9.1.js"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/jquery-1.9.1.js",
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_title": "JS Libraries on the fly!",
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/scripts\/load.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}