Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Auto Refresh With Notificationsคืออะไร?

Auto Refresh With Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย little.melon.dev และคุณลักษณะหลักของมันคือ "chrome extension to auto refresh web page with notifications."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Refresh With Notifications

ดาวน์โหลดไฟล์ส่วนขยาย Auto Refresh With Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}