Cachebuster

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

Cachebuster là gì?

Cachebuster là một tiện ích mở rộng Chrome được phát triển bởi Yasa Akbulut, và tính năng chính của nó là "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.".

Ả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 Cachebuster

Tải xuống các tệp mở rộng Cachebuster 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

                        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.                    

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

Tên Cachebuster Cachebuster
ID lmdhgpbbmafnmlkpeaafegpohagkoikd
URL Chính Thức https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd
Mô tả The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
Kích Thước Tệp 71.85 KB
Số Lần Cài Đặt 831
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2022-06-24
Ngày Phát Hành 2013-12-30
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Yasa Akbulut
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://yasakbulut.github.io/cachebuster/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}