Play Framework Tools
This extension helps developers more efficiently build apps with the Play Framework.
Play Framework Toolsคืออะไร?
Play Framework Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.playframework.com และคุณลักษณะหลักของมันคือ "This extension helps developers more efficiently build apps with the Play Framework."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play Framework Tools
ดาวน์โหลดไฟล์ส่วนขยาย Play Framework Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |