Just Refresh

One-click toggle auto-refresh

什麼是Just Refresh?

Just Refresh是由claxtons4開發的Chrome擴展程式,該擴展的主要功能是“One-click toggle auto-refresh”。

擴展截圖

screenshot

下載Just Refresh擴展crx文件

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

擴展使用說明

                        Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click.

Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like.

If you like the extension, please leave a review and support me here:
https://ko-fi.com/claxtastic

New in v1.2: Apply settings to any URL from a given domain

You can view the source of the extension here:
https://github.com/Claxtastic/just-refresh

And find my other projects here:
https://github.com/Claxtastic

The extension was designed overall to be minimal and straight to the point. It requires two permissions: 
1. activeTab: To access the current tab and start the refresh loop.
2. storage: To locally store the current refresh interval.                    

擴展基本資訊

名稱 Just Refresh Just Refresh
ID pgaimkehoiabhliejchbnamlboniofpd
官方網址 https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd
簡介 One-click toggle auto-refresh
檔案大小 44.83 KB
安裝次數 1,000
目前版本 1.2
更新時間 2021-03-06
上架時間 2019-07-23
評分 4.43/5 共 7 次評分
開發者 claxtons4
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Claxtastic/just-refresh
說明頁面URL https://ko-fi.com/claxtastic
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Refresh",
    "version": "1.2",
    "description": "One-click toggle auto-refresh",
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": [],
    "commands": {
        "toggle-refresh": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Toggle refresh with keybind"
        }
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "images\/just_refresh128.png"
    },
    "manifest_version": 2
}