Auto Refresh

Auto refresh for develop

What is Auto Refresh?

Auto Refresh is a Chrome extension developed by selvn, and its main feature is "Auto refresh for develop".

Download Auto Refresh Extension CRX File

Download Auto Refresh extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
Official URL https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
Description Auto refresh for develop
File Size 141 KB
Installation Count 71
Current Version 1
Last Updated 2013-06-23
Publish Date 2013-06-23
Rating 2.50/5 Total 2 Ratings
Developer selvn
Payment Type free
Supported Languages 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"
        ]
    }
}