Reload All Tabs

Reloads all open tabs in one click.

Reload All Tabs là gì?

Reload All Tabs là một tiện ích mở rộng Chrome được phát triển bởi itworks, và tính năng chính của nó là "Reloads all open tabs in one click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reload All Tabs

Tải xuống các tệp mở rộng Reload All Tabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reload All Tabs Reload All Tabs
ID lpkdnfkjhdkcpimadpdcgapffceacjem
URL Chính Thức https://chromewebstore.google.com/detail/reload-all-tabs/lpkdnfkjhdkcpimadpdcgapffceacjem
Mô tả Reloads all open tabs in one click.
Kích Thước Tệp 29.98 KB
Số Lần Cài Đặt 9,489
Phiên Bản Hiện Tại 1.5.5.3
Cập Nhật Lần Cuối 2018-06-08
Ngày Phát Hành 2018-06-07
Đánh Giá 4.05/5 Tổng số 114 Đánh Giá
Nhà Phát Triển itworks
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}