Auto-Reload Target URL

Reloads a target URL every specified seconds.

Wat is Auto-Reload Target URL?

Auto-Reload Target URL is een Chrome-extensie ontwikkeld door jon, en de belangrijkste functie is "Reloads a target URL every specified seconds.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto-Reload Target URL

Download Auto-Reload Target URL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Auto-Reload Target URL Auto-Reload Target URL
ID fbofpnajkcpnpillmmfhggjandclmjgj
Officiële URL https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj
Beschrijving Reloads a target URL every specified seconds.
Bestandsgrootte 36.3 KB
Aantal Installaties 1,299
Huidige Versie 1.4.1
Laatst Bijgewerkt 2022-06-25
Publicatiedatum 2017-12-09
Beoordeling 4.60/5 Totaal 5 Beoordelingen
Ontwikkelaar jon
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jondb/auto-reload
Help Pagina-URL https://github.com/jondb/auto-reload/issues
Ondersteunde Talen 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"
    }
}