Auto refresh

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

Auto refreshとは何ですか?

Auto refreshはidofによって開発されたChromeの拡張機能で、その主な機能は「Automatically refresh the specified page, or only refresh the inactive TAB page.」です。

拡張機能のスクリーンショット

screenshot

Auto refresh拡張機能のCRXファイルをダウンロード

Auto refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Auto refresh Auto refresh
ID mljjfcmhgefdfgeomcaocgijloggnnjk
公式URL https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk
説明 Automatically refresh the specified page, or only refresh the inactive TAB page.
ファイルサイズ 74.91 KB
インストール数 10,000
現在のバージョン 1.0
最終更新日 2014-11-15
公開日 2014-11-15
評価 4.27/5 合計 15 レビュー
開発者 idof
支払い方法 free
対応言語 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"
}