Just Refresh

One-click toggle auto-refresh

Qu'est-ce que Just Refresh ?

Just Refresh est une extension Chrome développée par claxtons4, et sa fonction principale est "One-click toggle auto-refresh".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Just Refresh

Téléchargez les fichiers d'extension Just Refresh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Just Refresh Just Refresh
ID pgaimkehoiabhliejchbnamlboniofpd
URL Officiel https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd
Description One-click toggle auto-refresh
Taille du Fichier 44.83 KB
Nombre d'Installations 1,000
Version Actuelle 1.2
Dernière Mise à Jour 2021-03-06
Date de Publication 2019-07-23
Évaluation 4.43/5 Total 7 Évaluations
Développeur claxtons4
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Claxtastic/just-refresh
URL de la Page d'Aide https://ko-fi.com/claxtastic
Langues Prises en Charge 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
}