Auto refresh

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

Vad är Auto refresh?

Auto refresh är en Chrome-tillägg utvecklad av idof, och dess huvudfunktion är "Automatically refresh the specified page, or only refresh the inactive TAB page.".

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

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

Grundläggande Information om Tillägg

Namn Auto refresh Auto refresh
ID mljjfcmhgefdfgeomcaocgijloggnnjk
Officiell webbadress https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk
Beskrivning Automatically refresh the specified page, or only refresh the inactive TAB page.
Filstorlek 74.91 KB
Antal Installationer 10,000
Aktuell Version 1.0
Senast Uppdaterad 2014-11-15
Publiceringsdatum 2014-11-15
Betyg 4.27/5 Totalt 15 Betyg
Utvecklare idof
Betalningssätt free
Stödda Språk 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"
}