Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Was ist Auto Refresh With Notifications?

Auto Refresh With Notifications ist eine Chrome-Erweiterung, die von little.melon.dev entwickelt wurde, und ihr Hauptmerkmal ist "chrome extension to auto refresh web page with notifications.".

Erweiterungsscreenshots

screenshot

Auto Refresh With Notifications-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Refresh With Notifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Auto Refresh With Notifications Auto Refresh With Notifications
ID hdokhoidbfbodcgoeacbddacldjgnkjc
Offizielle URL https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc
Beschreibung chrome extension to auto refresh web page with notifications.
Dateigröße 66.52 KB
Installationsanzahl 10,102
Aktuelle Version 0.0.4
Letztes Update 2020-04-29
Veröffentlichungsdatum 2020-04-26
Bewertung 3.84/5 Insgesamt 38 Bewertungen
Entwickler little.melon.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}