Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

What is Auto Refresh With Notifications?

Auto Refresh With Notifications is a Chrome extension developed by little.melon.dev, and its main feature is "chrome extension to auto refresh web page with notifications.".

Extension Screenshots

screenshot

Download Auto Refresh With Notifications Extension CRX File

Download Auto Refresh With Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Auto Refresh With Notifications Auto Refresh With Notifications
ID hdokhoidbfbodcgoeacbddacldjgnkjc
Official URL https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc
Description chrome extension to auto refresh web page with notifications.
File Size 66.52 KB
Installation Count 10,102
Current Version 0.0.4
Last Updated 2020-04-29
Publish Date 2020-04-26
Rating 3.84/5 Total 38 Ratings
Developer little.melon.dev
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}