Auto refresh

Automatically refresh the specified page, or only refresh the inactive TAB page.

Co to jest Auto refresh?

Auto refresh to rozszerzenie Chrome opracowane przez idof, a jego główną funkcją jest „Automatically refresh the specified page, or only refresh the inactive TAB page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Auto refresh

Pobierz pliki rozszerzeń Auto refresh w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Automatically refresh the specified page, or only refresh the inactive TAB page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Auto refresh Auto refresh
ID mljjfcmhgefdfgeomcaocgijloggnnjk
Oficjalny URL https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk
Opis Automatically refresh the specified page, or only refresh the inactive TAB page.
Rozmiar pliku 74.91 KB
Liczba instalacji 10,000
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-11-15
Data Publikacji 2014-11-15
Ocena 4.27/5 Łącznie 15 Oceny
Deweloper idof
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "background": {
        "page": "background.html",
        "script": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "img\/on128.png",
        "64": "img\/on64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "page_action": {
        "default_icon": "img\/off.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "permissions": [
        "tabs",
        "browsingData",
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}