Auto Refresh

Auto refresh for develop

Vad är Auto Refresh?

Auto Refresh är en Chrome-tillägg utvecklad av selvn, och dess huvudfunktion är "Auto refresh for develop".

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

                        auto refresh your page, according to a url which return true to refresh or false not to refresh.
It is useful when you are writing html. config a page to monitor files change. If changed, this plugin will auto refresh.                    

Grundläggande Information om Tillägg

Namn Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
Officiell webbadress https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
Beskrivning Auto refresh for develop
Filstorlek 141 KB
Antal Installationer 71
Aktuell Version 1
Senast Uppdaterad 2013-06-23
Publiceringsdatum 2013-06-23
Betyg 2.50/5 Totalt 2 Betyg
Utvecklare selvn
Betalningssätt free
Stödda Språk zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "version": "1",
    "manifest_version": 2,
    "description": "Auto refresh for develop",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.8.3.min.js",
                "script.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}