Reload All Tabs

Reloads all open tabs in one click.

Reload All Tabsคืออะไร?

Reload All Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย itworks และคุณลักษณะหลักของมันคือ "Reloads all open tabs in one click."

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

screenshot

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

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

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

                        A simple extension that gives you a button to reload all open tabs.

Features:
- Context menus and an option to reload pinned tabs only.
- Option to reload all tabs in all windows.                    

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

ชื่อ Reload All Tabs Reload All Tabs
ID lpkdnfkjhdkcpimadpdcgapffceacjem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reload-all-tabs/lpkdnfkjhdkcpimadpdcgapffceacjem
คำอธิบาย Reloads all open tabs in one click.
ขนาดไฟล์ 29.98 KB
จำนวนการติดตั้ง 9,489
เวอร์ชันปัจจุบัน 1.5.5.3
อัปเดตครั้งล่าสุด 2018-06-08
วันที่เผยแพร่ 2018-06-07
คะแนน 4.05/5 รวมทั้งหมด 114 คะแนน
ผู้พัฒนา itworks
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload All Tabs",
    "version": "1.5.5.3",
    "description": "Reloads all open tabs in one click.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/script.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Reload All Tabs",
        "default_icon": "icon19.png",
        "default_popup": "menu.html"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}