Just Refresh

One-click toggle auto-refresh

Co je Just Refresh?

Just Refresh je rozšíření Chrome vyvinuté claxtons4, a jeho hlavní funkcí je „One-click toggle auto-refresh“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Just Refresh

Stáhněte si soubory rozšíření Just 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í

                        Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click.

Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like.

If you like the extension, please leave a review and support me here:
https://ko-fi.com/claxtastic

New in v1.2: Apply settings to any URL from a given domain

You can view the source of the extension here:
https://github.com/Claxtastic/just-refresh

And find my other projects here:
https://github.com/Claxtastic

The extension was designed overall to be minimal and straight to the point. It requires two permissions: 
1. activeTab: To access the current tab and start the refresh loop.
2. storage: To locally store the current refresh interval.                    

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

Název Just Refresh Just Refresh
ID pgaimkehoiabhliejchbnamlboniofpd
Oficiální URL https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd
Popis One-click toggle auto-refresh
Velikost souboru 44.83 KB
Počet instalací 1,000
Aktuální Verze 1.2
Poslední Aktualizace 2021-03-06
Datum Vydání 2019-07-23
Hodnocení 4.43/5 Celkem 7 Hodnocení
Vývojář claxtons4
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Claxtastic/just-refresh
URL Stránky Nápovědy https://ko-fi.com/claxtastic
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Refresh",
    "version": "1.2",
    "description": "One-click toggle auto-refresh",
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": [],
    "commands": {
        "toggle-refresh": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Toggle refresh with keybind"
        }
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "images\/just_refresh128.png"
    },
    "manifest_version": 2
}