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은(는) Hari Mahadevan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto refreshes the browser page when Django development server reloads itself. Use with companion Django app: django-autorefresh."입니다.

확장 프로그램 스크린샷

screenshot

Django Auto Refresh 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Django Auto Refresh Django Auto Refresh
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\/"
    ]
}