GWT Super Dev Button

Extension for GWT super dev mode developers

GWT Super Dev Button क्या है?

GWT Super Dev Button #DEL# द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for GWT super dev mode developers"।

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

screenshot
screenshot

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

crx प्रारूप में GWT Super Dev Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Extension for GWT developers who uses Super Dev Mode. It is a small "page action" button which allows to view all modules on specified codeserver and compile them without the need to add bookmarklets each time for each module. 

-'Module' dropdown displays all available modules on the specified code server
-On pressing the 'Compile' button the 'code server url' will be remembered
-On changing the 'code server' url modules will be reloaded

PLEASE NOTE:You may need to re-install the extension, in order to make Hot-Key work

$IF YOU FIND A BUG PLEASE DON'T HESITATE TO SUBMIT BUG REPORT$

Updates:
v.1.2.1 - Fixed problem with multi module projects
v.1.2.0 - Fixed layout issue (after Chrome changes), fixed disabling compile button
v.1.1.0 - Use Alt+Q to recompile (with last selected url and module name)
v.1.0.6 - More compact popup dialog
v.1.0.4 - Fixed problem with multi module projects
v.1.0.3 - Fixed annoying err message in a console                    

एक्सटेंशन की मूल जानकारी

नाम GWT Super Dev Button GWT Super Dev Button
ID piekceemifgeaigkimahdckfcikpmleh
आधिकारिक URL https://chromewebstore.google.com/detail/gwt-super-dev-button/piekceemifgeaigkimahdckfcikpmleh
विवरण Extension for GWT super dev mode developers
फ़ाइल का आकार 121 KB
स्थापना संख्या 2,086
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2015-04-10
प्रकाशन तिथि 2015-04-09
रेटिंग 3.71/5 कुल 14 रेटिंग्स
डेवलपर #DEL#
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GWT Super Dev Button",
    "description": "Extension for GWT super dev mode developers",
    "version": "1.2.1",
    "page_action": {
        "default_icon": "superman1.png",
        "default_title": "GWT Super Dev Button",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*",
                "http:\/\/127.0.0.1\/*"
            ],
            "js": [
                "superDevButton_cs.js",
                "jquery-1.11.0.js",
                "jquery.blockUI.js"
            ],
            "css": [
                "superDevButton_cs.css"
            ]
        }
    ],
    "commands": {
        "repeat-build": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Repeat build"
        }
    },
    "icons": {
        "128": "mainIcon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/localhost\/*",
        "http:\/\/127.0.0.1\/*",
        "storage"
    ]
}