Django Auto Refresh
Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh.
Django Auto Refreshคืออะไร?
Django Auto Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hari Mahadevan และคุณลักษณะหลักของมันคือ "Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Django Auto Refresh
ดาวน์โหลดไฟล์ส่วนขยาย Django Auto Refresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Django development server has the neat capability of reloading itself whenever the project's python source files are saved, ensuring that the latest version of the project is served at all times. However, to see the changes in the browser, you need manually refresh the relevant page or resort to incorporating a Javascript such as live.js in our source which will keep sending HEAD requests to the server to see if the page has changed and if it has reload the page. The former approach obviously is repetitive and needlessly painful. The latter approach works fine, but it results in additional requests to your server, something that you may be able to live with or if you're like me, you don't appreciate too much. Django-autorefresh is a solution to address this. To use, install this plugin and add the Django app autorefresh to your INSTALLED_APPS. Django app is available at https://github.com/harikvpy/django-autorefresh.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fhiifaacndkcjndjhjacbcnkpdghpkdc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/django-auto-refresh/fhiifaacndkcjndjhjacbcnkpdghpkdc |
คำอธิบาย | Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh. |
ขนาดไฟล์ | 14.03 KB |
จำนวนการติดตั้ง | 384 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2015-10-28 |
วันที่เผยแพร่ | 2015-10-28 |
ผู้พัฒนา | Hari Mahadevan |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/harikvpy/django-autorefresh |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Django Auto Refresh", "description": "Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh.", "version": "1.1", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon_16.png", "48": "icon_48.png" }, "browser_action": { "default_icon": "icon_passive.png", "default_title": "Django Auto Refresh" }, "options_page": "options.html", "permissions": [ "tabs", "activeTab", "http:\/\/localhost\/", "https:\/\/ajax.googleapis.com\/" ] } |