Auto Refresh

Auto refresh for develop

什么是Auto Refresh?

Auto Refresh是由selvn开发的Chrome扩展程序,该扩展的主要功能是“Auto refresh for develop”。

下载Auto Refresh扩展crx文件

下载Auto Refresh扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
官方URL https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
简介 Auto refresh for develop
文件大小 141 KB
安装次数 71
当前版本 1
更新时间 2013-06-23
上架时间 2013-06-23
评分 2.50/5 共2次评分
开发者 selvn
付费类型 free
支持的语言 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"
        ]
    }
}