Reload All Tabs

Reloads all open tabs in one click.

Reload All Tabsとは何ですか?

Reload All Tabsはitworksによって開発されたChromeの拡張機能で、その主な機能は「Reloads all open tabs in one click.」です。

拡張機能のスクリーンショット

screenshot

Reload All Tabs拡張機能のCRXファイルをダウンロード

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'"
}