Reload on Focus

Reload a tab whenever it receives the focus.

Apa itu Reload on Focus?

Reload on Focus adalah ekstensi Chrome yang dikembangkan oleh Stephen Blott, dan fitur utamanya adalah "Reload a tab whenever it receives the focus.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reload on Focus

Unduh file ekstensi Reload on Focus 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

                        This is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

Informasi Dasar Ekstensi

Nama Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL Resmi https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Deskripsi Reload a tab whenever it receives the focus.
Ukuran File 37.33 KB
Jumlah Instalasi 93
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-01-05
Tanggal Publikasi 2019-01-01
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Stephen Blott
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/smblott-github/chrome-reload-on-focus
URL Halaman Bantuan https://github.com/smblott-github/chrome-reload-on-focus/issues
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}