StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
StayFresh Page Refresher क्या है?
StayFresh Page Refresher Michael Goen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An open-source extension that refreshes pages at set intervals"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StayFresh Page Refresher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Choose a single URL, or all URLs at a domain to refresh periodically depending on the chosen time. The extension remembers your settings and can have multiple URLs refreshing at once. I'm open to suggestions for new features or improvements, feel free to leave a comment in the support section. The source code can be found at my github: https://github.com/mikegoen/stayfresh-extension
एक्सटेंशन की मूल जानकारी
नाम | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
आधिकारिक URL | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
विवरण | An open-source extension that refreshes pages at set intervals |
फ़ाइल का आकार | 101 KB |
स्थापना संख्या | 158 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2017-02-26 |
प्रकाशन तिथि | 2017-02-26 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | Michael Goen |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StayFresh Page Refresher", "description": "An open-source extension that refreshes pages at set intervals", "version": "1.0.0", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |