Auto Refresh

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

Vad är Auto Refresh?

Auto Refresh är en Chrome-tillägg utvecklad av https://stni.pw, och dess huvudfunktion är "Reload the web page automatically in the time interval that you want.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Refresh-förlängningens CRX-fil

Ladda ner Auto Refresh-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

A Shitian Ni Project                    

Grundläggande Information om Tillägg

Namn Auto Refresh Auto Refresh
ID omcjgdddgjlioknfggaelopggehgfcea
Officiell webbadress https://chromewebstore.google.com/detail/auto-refresh/omcjgdddgjlioknfggaelopggehgfcea
Beskrivning Reload the web page automatically in the time interval that you want.
Filstorlek 43.26 KB
Antal Installationer 6,749
Aktuell Version 1.0.6
Senast Uppdaterad 2016-06-26
Publiceringsdatum 2016-06-26
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare https://stni.pw
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}