Tab Reloader (page auto refresh)

An easy-to-use tab reloader with custom reloading time for individual tabs and more!

Tab Reloader (page auto refresh)とは何ですか?

Tab Reloader (page auto refresh)はtlintsprによって開発されたChromeの拡張機能で、その主な機能は「An easy-to-use tab reloader with custom reloading time for individual tabs and more!」です。

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

screenshot

Tab Reloader (page auto refresh)拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Tab reloader provides a toolbar panel to perform infinite reloading jobs on individual tabs.

You can define a custom period with a random variation for each tab. Tab reloading jobs can be disabled or enabled through the toolbar panel.

Preview:
https://www.youtube.com/watch?v=zAhQlorZZTc

Features:
1. Define variable (random) reloading times with a predefined range
2. Define whether reloading occurs when a tab is active or not
3. Restores reloading jobs after a restart (session manager)
4. Reload tabs from the context menu over tab element (see screenshot)
5. Optionally displays the remaining time of the next reloading on the badge area
6. See the list of all tabs with active reloading jobs in the browser action's popup
7. Set custom rules to start reloading a tab when URL or hostname matches.
8. Optionally move to the bottom of a tab after reloading occurs to read the new content
9. Reload all tabs in the current window or all browser windows
10. Reload local files (file://)
11. Optionally bypass form submissions
12. Define a policy that prevents reloading based on the time (date) and URL
13. Run custom JavaScript code on each reload.
14. Reload only a few times and then stop.
15. Reload discarded tabs in the current window or all windows
16. Supports setting reloading jobs of all selected tabs at once

To disable an already activated tab, please make sure to switch to the tab first, then open the toolbar button and disable the job. Note that if you are closing the tab, there is no need to disable the job. The job will be disabled automatically after an active tab gets closed.

As of version 0.2.7, you can now ask the extension to automatically set new reloading jobs for you based on the "Custom JSON" object. If the option is checked and the new page has a matching hostname, the extension will load the custom reloading job from the JSON and applies to the tab. Check the options and FAQs pages for more info.

As of version 0.2.9, 1 you can define a policy that prevents reloading based on the time (date) and URL. Both time and URL keys accept regular expressions to prevent reloading. With the policies you can, for instance, prevent reloading on a specific page of a domain or prevent reloading at specific hours of a day.                    

拡張機能の基本情報

名前 Tab Reloader (page auto refresh) Tab Reloader (page auto refresh)
ID dejobinhdiimklegodgbmbifijpppopn
公式URL https://chromewebstore.google.com/detail/tab-reloader-page-auto-re/dejobinhdiimklegodgbmbifijpppopn
説明 An easy-to-use tab reloader with custom reloading time for individual tabs and more!
ファイルサイズ 592 KB
インストール数 120,704
現在のバージョン 0.6.1
最終更新日 2023-02-14
公開日 2020-06-01
評価 4.10/5 合計 137 レビュー
開発者 tlintspr
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://webextension.org/listing/tab-reloader.html
ヘルプページのURL https://webextension.org/listing/tab-reloader.html
対応言語 de,en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Reloader (page auto refresh)",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.6.1",
    "permissions": [
        "storage",
        "tabs",
        "alarms",
        "webNavigation",
        "contextMenus",
        "idle",
        "scripting",
        "offscreen"
    ],
    "optional_host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "data\/icons\/disabled\/16.png",
            "32": "data\/icons\/disabled\/32.png"
        },
        "default_popup": "data\/popup\/index.html",
        "default_title": "Tab Reloader"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/tab-reloader.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": [],
        "reload.all": {
            "description": "Reload all tabs"
        },
        "reload.all.discarded": {
            "description": "Reload all discarded tabs"
        },
        "reload.window": {
            "description": "Reload all tabs in the current window"
        },
        "reload.window.discarded": {
            "description": "Reload all discarded tabs in the current window"
        },
        "reload.tabs.left": {
            "description": "Reload tabs to the left"
        },
        "reload.tabs.right": {
            "description": "Reload tabs to the right"
        },
        "stop.all": {
            "description": "Stop all Reloading Jobs"
        }
    }
}