Play Framework Tools
This extension helps developers more efficiently build apps with the Play Framework.
Play Framework Tools란 무엇입니까?
Play Framework Tools은(는) https://www.playframework.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps developers more efficiently build apps with the Play Framework."입니다.
확장 프로그램 스크린샷
Play Framework Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features * Auto-Refresh on Change * Open Editor to Error Notes To enable the auto-refresh in Play Framework applications you need to install an SBT plugin. More info: https://github.com/jamesward/play-auto-refresh Version 0.0.11 & 0.0.12 - The src file linking should work in Play 2.2 & 2.3 Version 0.0.9 & 0.0.10 - Attempt to fix the URL matching glob Version 0.0.8 - Works on any Play port Version 0.0.7 - Preserve scroll position Version 0.0.5 & 0.0.6 - Add the jQuery map file Version 0.0.4 - Small bug fixes Version 0.0.3 - When a editor URL does not have an HTTP handler, we can't seem to open it via AJAX (and thus avoiding a new tab to be opened). Until we find a workaround for it, we open the URL in _blank (new tab). Version 0.0.2 - Adds support to click a compile error and have an IDE opened to the correct line. More details: https://github.com/jamesward/play-auto-refresh Version 0.0.1 - Includes support for auto-refreshing the browser whenever a compile runs. *Requires the "play-auto-refresh" SBT plugin: https://github.com/jamesward/play-auto-refresh
확장 프로그램 기본 정보
이름 | Play Framework Tools |
ID | dchhggpgbommpcjpogaploblnpldbmen |
공식 URL | https://chromewebstore.google.com/detail/play-framework-tools/dchhggpgbommpcjpogaploblnpldbmen |
설명 | This extension helps developers more efficiently build apps with the Play Framework. |
파일 크기 | 94.57 KB |
설치 횟수 | 627 |
현재 버전 | 0.0.12 |
최근 업데이트 | 2014-09-02 |
출시 날짜 | 2014-09-01 |
평점 | 4.71/5 총 14 개의 평점 |
개발자 | https://www.playframework.com |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Play Framework Tools", "description": "This extension helps developers more efficiently build apps with the Play Framework.", "version": "0.0.12", "icons": { "128": "icon_128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/localhost\/*", "http:\/\/*.localhost\/*" ], "js": [ "jquery-1.9.0.min.js", "play-framework-chrome-tools.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "jquery.min.map" ] } |