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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}