Reload tabs

Reload all of the current window's tabs

Apa itu Reload tabs?

Reload tabs adalah ekstensi Chrome yang dikembangkan oleh msskmlrn, dan fitur utamanya adalah "Reload all of the current window's tabs".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reload tabs

Unduh file ekstensi Reload tabs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
URL Resmi https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Deskripsi Reload all of the current window's tabs
Ukuran File 6.75 KB
Jumlah Instalasi 31
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-06-06
Tanggal Publikasi 2014-06-06
Pengembang msskmlrn
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/msskmlrn/reload-tabs
Bahasa yang Didukung 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"
    ]
}