Offline Cache

Keeps files accessed for domains, so they can be loaded with no internet connection.

Offline Cacheคืออะไร?

Offline Cache เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Keeps files accessed for domains, so they can be loaded with no internet connection."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Offline Cache

ดาวน์โหลดไฟล์ส่วนขยาย Offline Cache ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Offline Cache
==========

This extension assists in working in an offline environment. When active and recording, it records the requests made from a web page and maintains a cache of the responses. When active and replaying, it uses the responses stored in the cache to spoof/mock the response as if you were online.

The extension is configured to only be active on certain domains, which can be set from the extension's options page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Offline Cache Offline Cache
ID clnnmflgmblfoaneepnpadmelcjlckkb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/offline-cache/clnnmflgmblfoaneepnpadmelcjlckkb
คำอธิบาย Keeps files accessed for domains, so they can be loaded with no internet connection.
ขนาดไฟล์ 128 KB
จำนวนการติดตั้ง 225
เวอร์ชันปัจจุบัน 1.33
อัปเดตครั้งล่าสุด 2016-03-16
วันที่เผยแพร่ 2016-03-16
คะแนน 2.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Offline Cache",
    "version": "1.33",
    "manifest_version": 2,
    "description": "Keeps files accessed for domains, so they can be loaded with no internet connection.",
    "browser_action": {
        "default_icon": "disabled.png",
        "default_title": "Toggle On\/Off",
        "default_popup": "switcheroo.html"
    },
    "permissions": [
        "unlimitedStorage",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "lib\/url.js",
            "Tabs.js",
            "Storage.js",
            "RulesService.js",
            "Cache.js",
            "MessageService.js",
            "RequestModerator.js",
            "IconStatus.js",
            "background.js"
        ]
    }
}