Power Cache

Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.

Power Cache là gì?

Power Cache là một tiện ích mở rộng Chrome được phát triển bởi Arthur Khachatryan, và tính năng chính của nó là "Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.".

Ả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 Power Cache

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

                        Is the "disable cache" feature of Chrome's Dev Tools wasting you precious development time and costing you your sanity? Why not turn it off and only disable cache for selected paths/files? PowerCache save you time and gives you back your sanity by force-fetching specific assets, just the ones that you'd expect to have changed. Just add the URL pattern that you'd like to disable caching for and let it run. 

During web development, developers refresh web pages quite a bit. You can take advantage of caching for the vast majority of files, and only fetch new files for the features you're currently working on.

It's easy to use:
1. Toggle off "Disable cache" on Chrome's network tab to take advantage of the vast majority of assets being loaded from cache making reloads faster.
2. Add the URL pattern for disabling cache and forcing requests of only specific assets (the ones you're likely working on) and enable it. The 'enable' button will be disabled until you specify a pattern.

Patterns

Patterns are NOT in regex format. They are simpler. Requests are inclusive of both "http://" and "https://" and assume them as well as any domain in the request prefixes automatically, so you don't have to worry about it. All that's needed is the tail end of the path, which can be as broad as all requests under first-level folders or as specific as single files.

The extension also includes a help screen with additional information and examples of patterns. Patterns are automatically saved and synced across your account for easier reuse from the same or different machines. If you specify an incorrect pattern or if the pattern does not match any of the requests, you will not see any requests being logged in the 'Non-Cached Requests' panel.                    

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

Tên Power Cache Power Cache
ID famkodflhompmapangljedfdcfeligih
URL Chính Thức https://chromewebstore.google.com/detail/power-cache/famkodflhompmapangljedfdcfeligih
Mô tả Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.
Kích Thước Tệp 30 KB
Số Lần Cài Đặt 2,282
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2017-03-26
Ngày Phát Hành 2017-03-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Arthur Khachatryan
Loại Thanh Toán free
Trang Web Mở Rộng http://www.aspiremedia.net
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Power Cache",
    "description": "Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.",
    "version": "0.0.5",
    "icons": {
        "16": "img\/power-cache-16.png",
        "128": "img\/power-cache-128.png"
    },
    "browser_action": {
        "default_icon": "img\/power-cache-16.png",
        "default_popup": "popup.html",
        "default_title": "Power Cache"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "",
        "activeTab",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ]
}