Auto-Reload Target URL

Reloads a target URL every specified seconds.

What is Auto-Reload Target URL?

Auto-Reload Target URL is a Chrome extension developed by jon, and its main feature is "Reloads a target URL every specified seconds.".

Extension Screenshots

screenshot

Download Auto-Reload Target URL Extension CRX File

Download Auto-Reload Target URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Simple tool to automatically reload the webpage in the current tab. 

Supports any interval from 1 second to 10000.

The extension is open source and does not collect any information.                    

Extension Basic Information

Name Auto-Reload Target URL Auto-Reload Target URL
ID fbofpnajkcpnpillmmfhggjandclmjgj
Official URL https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj
Description Reloads a target URL every specified seconds.
File Size 36.3 KB
Installation Count 1,299
Current Version 1.4.1
Last Updated 2022-06-25
Publish Date 2017-12-09
Rating 4.60/5 Total 5 Ratings
Developer jon
Email [email protected]
Payment Type free
Extension Website https://github.com/jondb/auto-reload
Help Page URL https://github.com/jondb/auto-reload/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto-Reload Target URL",
    "version": "1.4.1",
    "manifest_version": 3,
    "description": "Reloads a target URL every specified seconds.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "stopwatch22.png",
        "default_popup": "info.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*"
    ],
    "permissions": [
        "tabs",
        "storage",
        "alarms"
    ],
    "icons": {
        "16": "stopwatch16.png",
        "48": "stopwatch48.png",
        "128": "stopwatch128.png"
    }
}