Timer Refresh
Timer refresh the specified page or only refresh the inactive TAB page.
Timer Refresh क्या है?
Timer Refresh thomashg0712 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Timer refresh the specified page or only refresh the inactive TAB page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Timer Refresh एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
For some users with special needs, keeping the page active maybe a good help.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fembhgfanglpnpkjcgdacodmefdmfpep |
आधिकारिक URL | https://chrome.google.com/webstore/detail/fembhgfanglpnpkjcgdacodmefdmfpep |
विवरण | Timer refresh the specified page or only refresh the inactive TAB page. |
फ़ाइल का आकार | 27.85 KB |
स्थापना संख्या | 42 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-01-19 |
प्रकाशन तिथि | 2020-01-19 |
डेवलपर | thomashg0712 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html", "script": "background.js" }, "content_scripts": [ { "all_frames": false, "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "128": "img\/on128.png" }, "manifest_version": 2, "name": "__MSG_extName__", "page_action": { "default_icon": "img\/on128.png", "default_popup": "popup.html", "default_title": "__MSG_extName__" }, "permissions": [ "tabs", "browsingData", "webRequest", "webNavigation", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.0.1" } |