Hard reload
Adds a hard reload button to chrome.
ما هو Hard reload؟
Hard reload هو إضافة Chrome تم تطويرها بواسطة Spuffynism، والميزة الرئيسية لها هي "Adds a hard reload button to chrome.".
تحميل ملف CRX للإضافة Hard reload
قم بتنزيل ملفات الامتداد Hard reload بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Hard reloads a page, bypassing/ignoring the cache. To hard reload the active tab's content, either click the button in the taskbar or press Alt+R. Source code can be found here: https://github.com/Spuffynism/hardreload
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | bdmblpnglgiabhlbpkefgehelmlgodjd |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd |
الوصف | Adds a hard reload button to chrome. |
حجم الملف | 4.05 KB |
عدد التثبيتات | 383 |
النسخة الحالية | 1.2 |
آخر تحديث | 2018-05-26 |
تاريخ النشر | 2018-05-26 |
تقييم | 4.40/5 مجموع تقييمات 5 |
المطور | Spuffynism |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Spuffynism/hardreload |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hard reload", "description": "Adds a hard reload button to chrome.", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "commands": { "hard-reload": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Hard reloads" } }, "permissions": [ "activeTab", "browsingData" ], "browser_action": { "default_title": "Hard reload this page", "default_icon": "hard_reload.png" }, "manifest_version": 2 } |