Simple Auto Refresh

lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval

什麼是Simple Auto Refresh?

Simple Auto Refresh是由tobias.samesch開發的Chrome擴展程式,該擴展的主要功能是“lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval”。

擴展截圖

screenshot
screenshot

下載Simple Auto Refresh擴展crx文件

下載Simple Auto Refresh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.                    

擴展基本資訊

名稱 Simple Auto Refresh Simple Auto Refresh
ID jghdcjbendekbeopdlofjcnogeeemjgd
官方網址 https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd
簡介 lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
檔案大小 10.36 KB
安裝次數 18
目前版本 1.0.3
更新時間 2021-02-18
上架時間 2021-01-09
評分 5.00/5 共 1 次評分
開發者 tobias.samesch
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Auto Refresh",
    "version": "1.0.3",
    "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval",
    "permissions": [
        "declarativeContent",
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "24": "images\/ic_refresh_24px.png",
            "16": "images\/ic_refresh_24px.png",
            "32": "images\/ic_refresh_24px.png",
            "48": "images\/ic_refresh_24px.png",
            "128": "images\/ic_refresh_24px.png"
        }
    },
    "icons": {
        "24": "images\/ic_refresh_24px.png",
        "16": "images\/ic_refresh_24px.png",
        "32": "images\/ic_refresh_24px.png",
        "48": "images\/ic_refresh_24px.png",
        "128": "images\/ic_refresh_24px.png"
    },
    "manifest_version": 2
}