Cachebuster
The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
ما هو Cachebuster؟
Cachebuster هو إضافة Chrome تم تطويرها بواسطة Yasa Akbulut، والميزة الرئيسية لها هي "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Cachebuster
قم بتنزيل ملفات الامتداد Cachebuster بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Cachebuster |
ID | lmdhgpbbmafnmlkpeaafegpohagkoikd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd |
الوصف | The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes. |
حجم الملف | 71.85 KB |
عدد التثبيتات | 831 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2022-06-24 |
تاريخ النشر | 2013-12-30 |
تقييم | 5.00/5 مجموع تقييمات 6 |
المطور | Yasa Akbulut |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://yasakbulut.github.io/cachebuster/ |
اللغات المدعومة | 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" } } |