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 extension to auto refresh web page with notifications."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Refresh With Notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |