Simple Auto Refresh

lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval

Co je Simple Auto Refresh?

Simple Auto Refresh je rozšíření Chrome vyvinuté tobias.samesch, a jeho hlavní funkcí je „lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Simple Auto Refresh

Stáhněte si soubory rozšíření Simple Auto Refresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.                    

Základní Informace o Rozšíření

Název Simple Auto Refresh Simple Auto Refresh
ID jghdcjbendekbeopdlofjcnogeeemjgd
Oficiální URL https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd
Popis lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Velikost souboru 10.36 KB
Počet instalací 18
Aktuální Verze 1.0.3
Poslední Aktualizace 2021-02-18
Datum Vydání 2021-01-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář tobias.samesch
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Auto Refresh",
    "version": "1.0.3",
    "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval",
    "permissions": [
        "declarativeContent",
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "24": "images\/ic_refresh_24px.png",
            "16": "images\/ic_refresh_24px.png",
            "32": "images\/ic_refresh_24px.png",
            "48": "images\/ic_refresh_24px.png",
            "128": "images\/ic_refresh_24px.png"
        }
    },
    "icons": {
        "24": "images\/ic_refresh_24px.png",
        "16": "images\/ic_refresh_24px.png",
        "32": "images\/ic_refresh_24px.png",
        "48": "images\/ic_refresh_24px.png",
        "128": "images\/ic_refresh_24px.png"
    },
    "manifest_version": 2
}