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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Load JavaScript libraries to current page on the fly for testing or trying something!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JavaScript Libraries On the fly! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}