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"
        ]
    }
}