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”。

擴展截圖

screenshot

下載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 Disable Ynet auto refresh
ID mmlhdonlemejhcakmibfddphfigagfnn
官方網址 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"
    ]
}