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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |