Super-Cache
Helps in overriding cache policy
ما هو Super-Cache؟
Super-Cache هو إضافة Chrome تم تطويرها بواسطة Tushar Mathur، والميزة الرئيسية لها هي "Helps in overriding cache policy".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Super-Cache
قم بتنزيل ملفات الامتداد Super-Cache بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Control caching behavior on the client side!
UPDATE:
Bugs fixed as reported by M-Ubaid Raza, thanks for informing.
Features
1. Override caching policy that has been set on the server.
Select a host on which the caching is required and all requests from a page with that host will be cached.
2. Caching of static content which are on a different host will also be cahed (read Note for further explanation)
Note: say you have a site example.com on which you have set a caching policy thru the extension. Now if the any page on example.com links to external scripts and sites which are on a different domain such as static.example.com or ajax.googleapis.com, the extension will automatically apply the same caching behavior as that of example.com
Source Code
https://github.com/tusharmath/Super-Cache معلومات أساسية عن التمديد
| الاسم | |
| ID | fglobbnbihckpkodmeefhagijjcjnbeh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/super-cache/fglobbnbihckpkodmeefhagijjcjnbeh |
| الوصف | Helps in overriding cache policy |
| حجم الملف | 86.34 KB |
| عدد التثبيتات | 1,762 |
| النسخة الحالية | 1.1.18 |
| آخر تحديث | 2013-06-12 |
| تاريخ النشر | 2013-06-12 |
| تقييم | 4.32/5 مجموع تقييمات 31 |
| المطور | Tushar Mathur |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/tusharmath/Super-Cache |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Super-Cache",
"manifest_version": 2,
"version": "1.1.18",
"description": "Helps in overriding cache policy",
"permissions": [
"*:\/\/*\/*",
"storage",
"webRequest",
"webRequestBlocking",
"tabs"
],
"page_action": {
"default_title": "Super Cache",
"default_icon": "snapshots\/cache_black.png",
"default_popup": "popup\/index.html"
},
"background": {
"scripts": [
"background\/bg.min.js"
]
}
} | |