Auto Reload IDT

Refresh automatically pages on a selected interval of seconds or specific time.

Auto Reload IDTとは何ですか?

Auto Reload IDTはGiovani Silvaによって開発されたChromeの拡張機能で、その主な機能は「Refresh automatically pages on a selected interval of seconds or specific time.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Refresh automatically pages on a selected interval of seconds or specific time.                    

拡張機能の基本情報

名前 Auto Reload IDT Auto Reload IDT
ID fnkcgkngofnmodlbhmkfkloggnldomng
公式URL https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng
説明 Refresh automatically pages on a selected interval of seconds or specific time.
ファイルサイズ 47.58 KB
インストール数 505
現在のバージョン 1.0.3
最終更新日 2018-06-06
公開日 2018-06-06
評価 4.25/5 合計 8 レビュー
開発者 Giovani Silva
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reload IDT",
    "description": "Refresh automatically pages on a selected interval of seconds or specific time.",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ],
    "browser_action": {
        "default_icon": "reloadBtn.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/inicialization.js",
                "scripts\/jquery.js",
                "scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "reloadBtn.png",
        "48": "reloadBtn.png",
        "128": "reloadBtn.png"
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}