Django Auto Refresh

Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh.

Django Auto Refresh là gì?

Django Auto Refresh là một tiện ích mở rộng Chrome được phát triển bởi Hari Mahadevan, và tính năng chính của nó là "Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Django Auto Refresh

Tải xuống các tệp mở rộng Django Auto Refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Django Auto Refresh Django Auto Refresh
ID fhiifaacndkcjndjhjacbcnkpdghpkdc
URL Chính Thức https://chrome.google.com/webstore/detail/django-auto-refresh/fhiifaacndkcjndjhjacbcnkpdghpkdc
Mô tả Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh.
Kích Thước Tệp 14.03 KB
Số Lần Cài Đặt 384
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-10-28
Ngày Phát Hành 2015-10-28
Nhà Phát Triển Hari Mahadevan
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/harikvpy/django-autorefresh
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}