Hard reload

Adds a hard reload button to chrome.

Hard reload란 무엇입니까?

Hard reload은(는) Spuffynism에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a hard reload button to chrome."입니다.

Hard reload 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hard reloads a page, bypassing/ignoring the cache.

To hard reload the active tab's content, either click the button in the taskbar or press Alt+R.

Source code can be found here: https://github.com/Spuffynism/hardreload                    

확장 프로그램 기본 정보

이름 Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
공식 URL https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
설명 Adds a hard reload button to chrome.
파일 크기 4.05 KB
설치 횟수 383
현재 버전 1.2
최근 업데이트 2018-05-26
출시 날짜 2018-05-26
평점 4.40/5 총 5 개의 평점
개발자 Spuffynism
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Spuffynism/hardreload
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hard reload",
    "description": "Adds a hard reload button to chrome.",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "hard-reload": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Hard reloads"
        }
    },
    "permissions": [
        "activeTab",
        "browsingData"
    ],
    "browser_action": {
        "default_title": "Hard reload this page",
        "default_icon": "hard_reload.png"
    },
    "manifest_version": 2
}