Disable Ynet auto refresh
Disables Ynet from auto refreshing every 15 minutes
Disable Ynet auto refreshとは何ですか?
Disable Ynet auto refreshはatlantehによって開発されたChromeの拡張機能で、その主な機能は「Disables Ynet from auto refreshing every 15 minutes」です。
拡張機能のスクリーンショット
Disable Ynet auto refresh拡張機能のCRXファイルをダウンロード
Disable Ynet auto refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |