Auto Refresh

Reload the web page automatically in the time interval that you want.

Hvad er Auto Refresh?

Auto Refresh er en Chrome-udvidelse udviklet af https://stni.pw, og dens hovedfunktion er "Reload the web page automatically in the time interval that you want.".

Udvidelsesskærmbilleder

screenshot

Download Auto Refresh-udvidelses-CRX-fil

Download Auto Refresh-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Reload web pages automatically in the time interval that you want.

A Shitian Ni Project                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Refresh Auto Refresh
ID omcjgdddgjlioknfggaelopggehgfcea
Officiel URL https://chromewebstore.google.com/detail/auto-refresh/omcjgdddgjlioknfggaelopggehgfcea
Beskrivelse Reload the web page automatically in the time interval that you want.
Filstørrelse 43.26 KB
Antal Installationer 6,749
Nuværende Version 1.0.6
Senest Opdateret 2016-06-26
Udgivelsesdato 2016-06-26
Bedømmelse 3.00/5 Samlet 4 Bedømmelser
Udvikler https://stni.pw
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "short_name": "Refresh",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "Reload the web page automatically in the time interval that you want.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}