Disable Ynet auto refresh
Disables Ynet from auto refreshing every 15 minutes
Disable Ynet auto refresh क्या है?
Disable Ynet auto refresh atlanteh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disables Ynet from auto refreshing every 15 minutes"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Disable Ynet auto refresh एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You are just in the middle of a fine article in Ynet, and all of a sudden, the page auto refreshes it self! Or..You spent the last ten minutes composing a sophisticated comment to some ignorant commenter and suddenly the page auto refresh itself and all your your hard work got lost? No more! this is a simple extension that with just one line of code disables this auto refresh nuisance of Ynet. Download it now and enjoy a quiet and smooth surfing :)
एक्सटेंशन की मूल जानकारी
नाम | Disable Ynet auto refresh |
ID | mmlhdonlemejhcakmibfddphfigagfnn |
आधिकारिक URL | https://chromewebstore.google.com/detail/disable-ynet-auto-refresh/mmlhdonlemejhcakmibfddphfigagfnn |
विवरण | Disables Ynet from auto refreshing every 15 minutes |
फ़ाइल का आकार | 43.22 KB |
स्थापना संख्या | 1,063 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2015-07-19 |
प्रकाशन तिथि | 2015-07-19 |
रेटिंग | 2.88/5 कुल 8 रेटिंग्स |
डेवलपर | atlanteh |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "short_name": "__MSG_shortName__", "default_locale": "en", "version": "1.0.1", "page_action": { "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" }, "default_title": "Ynet refresh disabler" }, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.ynet.co.il\/*" ], "js": [ "scriptDisabler.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "showIconScript.js" ], "persistent": false }, "permissions": [ "declarativeContent" ] } |