Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Wat is Auto Refresh With Notifications?

Auto Refresh With Notifications is een Chrome-extensie ontwikkeld door little.melon.dev, en de belangrijkste functie is "chrome extension to auto refresh web page with notifications.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto Refresh With Notifications

Download Auto Refresh With Notifications-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

                        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                    

Basisinformatie over de Extensie

Naam Auto Refresh With Notifications Auto Refresh With Notifications
ID hdokhoidbfbodcgoeacbddacldjgnkjc
Officiële URL https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc
Beschrijving chrome extension to auto refresh web page with notifications.
Bestandsgrootte 66.52 KB
Aantal Installaties 10,102
Huidige Versie 0.0.4
Laatst Bijgewerkt 2020-04-29
Publicatiedatum 2020-04-26
Beoordeling 3.84/5 Totaal 38 Beoordelingen
Ontwikkelaar little.melon.dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}