GWT Super Dev Button
Extension for GWT super dev mode developers
GWT Super Dev Button란 무엇입니까?
GWT Super Dev Button은(는) #DEL#에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for GWT super dev mode developers"입니다.
확장 프로그램 스크린샷
GWT Super Dev Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |