JavaScript Libraries On the fly!

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

JavaScript Libraries On the fly! là gì?

JavaScript Libraries On the fly! là một tiện ích mở rộng Chrome được phát triển bởi Pawan Chopra, và tính năng chính của nó là "Load JavaScript libraries to current page on the fly for testing or trying something!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng JavaScript Libraries On the fly!

Tải xuống các tệp mở rộng JavaScript Libraries On the fly! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JavaScript Libraries On the fly! JavaScript Libraries On the fly!
ID hbamkklhfcfijoadciojpjbgpinfbofi
URL Chính Thức https://chromewebstore.google.com/detail/javascript-libraries-on-t/hbamkklhfcfijoadciojpjbgpinfbofi
Mô tả Load JavaScript libraries to current page on the fly for testing or trying something!
Kích Thước Tệp 50.86 KB
Số Lần Cài Đặt 206
Phiên Bản Hiện Tại 0.0.40
Cập Nhật Lần Cuối 2014-03-28
Ngày Phát Hành 2014-03-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Pawan Chopra
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}