Cachebuster

The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.

Cachebuster란 무엇입니까?

Cachebuster은(는) Yasa Akbulut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Cachebuster adds a query parameter to all HTTP requests made by your browser to bypass load balancer/proxy caches.

For example, an HTTP request to URL http://yasa.gs/ will actually be made to the URL http://yasa.gs/?cachebusterTimestamp=1383291810660.

Especially useful in scenarios where manual QA for web apps is performed in a corporate environment, which usually feature heavy caching via load balancers or proxies. Without this extension, testers might not see the latest changes.                    

확장 프로그램 기본 정보

이름 Cachebuster Cachebuster
ID lmdhgpbbmafnmlkpeaafegpohagkoikd
공식 URL https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd
설명 The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
파일 크기 71.85 KB
설치 횟수 831
현재 버전 0.0.5
최근 업데이트 2022-06-24
출시 날짜 2013-12-30
평점 5.00/5 총 6 개의 평점
개발자 Yasa Akbulut
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://yasakbulut.github.io/cachebuster/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cachebuster",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.",
    "homepage_url": "http:\/\/yasakbulut.github.io\/cachebuster",
    "icons": {
        "16": "icons\/Network16.png",
        "48": "icons\/Network48.png",
        "128": "icons\/Network128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "http:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/Network19.png",
            "38": "icons\/Network38.png"
        },
        "default_title": "Cache Buster"
    }
}