Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Auto Refresh With Notifications란 무엇입니까?

Auto Refresh With Notifications은(는) little.melon.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "chrome extension to auto refresh web page with notifications."입니다.

확장 프로그램 스크린샷

screenshot

Auto Refresh With Notifications 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Auto Refresh With Notifications Auto Refresh With Notifications
ID hdokhoidbfbodcgoeacbddacldjgnkjc
공식 URL https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc
설명 chrome extension to auto refresh web page with notifications.
파일 크기 66.52 KB
설치 횟수 10,102
현재 버전 0.0.4
최근 업데이트 2020-04-29
출시 날짜 2020-04-26
평점 3.84/5 총 38 개의 평점
개발자 little.melon.dev
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}