Tab Auto Refresh

Automatically refresh tabs based on custom time intervals

Cos'è Tab Auto Refresh?

Tab Auto Refresh è un'estensione di Chrome sviluppata da MeryDev, e la sua funzione principale è "Automatically refresh tabs based on custom time intervals".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Auto Refresh

Scarica i file di estensione Tab Auto Refresh in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Tab Auto Refresh is a browser addon that helps you automatically reload (refresh) tabs of your choice.

To operate with this addon, please open toolbar popup UI while you are visiting a website. Adjust time interval in seconds (i.e. 120 sec) and you are all set. Selected tab will be reloaded based on the interval you just set.

Please note reloading occurs based on tab URL not tab ID or domain. If you want to stop the current "reload" task, please press on the "stop" button at top left corner in toolbar popup UI. Alternatively you can set the interval to 0 which is equal to stop function.

If you have many tabs reloading and do not want to visit each tab to clear the reloading task, please open toolbar popup UI and press on the "reset" (top right) button to do so. This button serves as a global reset button and clears the reloading task for all tabs.

To report bugs, please visit addon's homepage (https://mybrowseraddon.com/tab-auto-refresh.html) and fill the bug report form.                    

Informazioni di Base sull'Estensione

Nome Tab Auto Refresh Tab Auto Refresh
ID jaioibhbkffompljnnipmpkeafhpicpd
URL Ufficiale https://chromewebstore.google.com/detail/tab-auto-refresh/jaioibhbkffompljnnipmpkeafhpicpd
Descrizione Automatically refresh tabs based on custom time intervals
Dimensione del File 44.92 KB
Conteggio Installazioni 121,876
Versione Corrente 0.2.0
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2020-05-26
Valutazione 4.06/5 Totale 65 Valutazioni
Sviluppatore MeryDev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mybrowseraddon.com/tab-auto-refresh.html
URL della Pagina di Aiuto https://mybrowseraddon.com/tab-auto-refresh.html
URL della Pagina della Politica sulla Privacy https://add0n.com/policies/mery.dev.txt
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.0",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Tab Auto Refresh",
    "homepage_url": "https:\/\/mybrowseraddon.com\/tab-auto-refresh.html",
    "description": "Automatically refresh tabs based on custom time intervals",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "alarms",
        "storage",
        "notifications"
    ],
    "action": {
        "default_title": "Tab Auto Refresh",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}