Cache Bomb
Cache-busts the current page.
ما هو Cache Bomb؟
Cache Bomb هو إضافة Chrome تم تطويرها بواسطة Nicholas Scheurich، والميزة الرئيسية لها هي "Cache-busts the current page.".
تحميل ملف CRX للإضافة Cache Bomb
قم بتنزيل ملفات الامتداد Cache Bomb بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Appends the current datetime to URL as a valueless request parameter. Currently overwrites existing URL params.
Request features and report bugs at https://github.com/ngscheurich/cache_bomb.
Logo icons are from the excellent Nucleo set (https://nucleoapp.com/). معلومات أساسية عن التمديد
| الاسم | |
| ID | balfpnjonknhioomnkiebocaalohjkpk |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk |
| الوصف | Cache-busts the current page. |
| حجم الملف | 9.42 KB |
| عدد التثبيتات | 35 |
| النسخة الحالية | 1.1 |
| آخر تحديث | 2016-07-19 |
| تاريخ النشر | 2016-07-19 |
| المطور | Nicholas Scheurich |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/ngscheurich/cache_bomb |
| عنوان صفحة المساعدة | https://github.com/ngscheurich/cache_bomb/issues |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Cache Bomb",
"version": "1.1",
"description": "Cache-busts the current page.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_title": "Cache-bust the current page."
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab"
]
} | |