Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Qu'est-ce que Auto Refresh With Notifications ?

Auto Refresh With Notifications est une extension Chrome développée par little.melon.dev, et sa fonction principale est "chrome extension to auto refresh web page with notifications.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Auto Refresh With Notifications

Téléchargez les fichiers d'extension Auto Refresh With Notifications 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

                        Tired of manually refresh on one page with all your attention to get expected or unwanted contents? For example, refresh your shopping cart over and over to get a delivery window on amazon/instacart? You should save your valuable time for something else.

Auto Refresh With Notifications will help you automatically refresh on one page until "Excludes" contents are not shown on the page. You will be notified loudly with sounds which are set in "Notification Text".

In order to keep auto refreshing even you are away, please search online for how to disable your operating system's screen saver and prevent your computer from sleeping.

Need any help?
Twitter: @LittleMelonDev                    

Informations de Base sur l'Extension

Nom Auto Refresh With Notifications Auto Refresh With Notifications
ID hdokhoidbfbodcgoeacbddacldjgnkjc
URL Officiel https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc
Description chrome extension to auto refresh web page with notifications.
Taille du Fichier 66.52 KB
Nombre d'Installations 10,102
Version Actuelle 0.0.4
Dernière Mise à Jour 2020-04-29
Date de Publication 2020-04-26
Évaluation 3.84/5 Total 38 Évaluations
Développeur little.melon.dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Refresh With Notifications",
    "version": "0.0.4",
    "description": "chrome extension to auto refresh web page with notifications.",
    "permissions": [
        "tts",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "lib\/js\/jquery.min.js",
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    }
}