Reload All Tabs
This extension reloads all tabs in the active window.
ما هو Reload All Tabs؟
Reload All Tabs هو إضافة Chrome تم تطويرها بواسطة matthewlberg، والميزة الرئيسية لها هي "This extension reloads all tabs in the active window.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reload All Tabs
قم بتنزيل ملفات الامتداد Reload All Tabs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs.
معلومات أساسية عن التمديد
الاسم | Reload All Tabs |
ID | lgpdljdpanfecnpindkbnikegohoobci |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci |
الوصف | This extension reloads all tabs in the active window. |
حجم الملف | 4.38 KB |
عدد التثبيتات | 46,699 |
النسخة الحالية | 1.0 |
آخر تحديث | 2014-01-16 |
تاريخ النشر | 2014-01-16 |
تقييم | 4.47/5 مجموع تقييمات 58 |
المطور | matthewlberg |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload All Tabs", "description": "This extension reloads all tabs in the active window.", "version": "1.0", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Reload all tabs" } }, "permissions": [ "tabs", "background" ] } |