Reload tabs

Reload all of the current window's tabs

Reload tabsคืออะไร?

Reload tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย msskmlrn และคุณลักษณะหลักของมันคือ "Reload all of the current window's tabs"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reload tabs

ดาวน์โหลดไฟล์ส่วนขยาย Reload tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut.

You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing.

The source code can be found at https://github.com/msskmlrn/reload-tabs.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
คำอธิบาย Reload all of the current window's tabs
ขนาดไฟล์ 6.75 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-06-06
วันที่เผยแพร่ 2014-06-06
ผู้พัฒนา msskmlrn
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/msskmlrn/reload-tabs
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload tabs",
    "short_name": "Reload tabs",
    "version": "1.0",
    "description": "Reload all of the current window's tabs",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "reload.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Reload tabs"
        }
    },
    "permissions": [
        "tabs"
    ]
}