Disable Ynet auto refresh

Disables Ynet from auto refreshing every 15 minutes

Disable Ynet auto refresh là gì?

Disable Ynet auto refresh là một tiện ích mở rộng Chrome được phát triển bởi atlanteh, và tính năng chính của nó là "Disables Ynet from auto refreshing every 15 minutes".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable Ynet auto refresh

Tải xuống các tệp mở rộng Disable Ynet auto refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable Ynet auto refresh Disable Ynet auto refresh
ID mmlhdonlemejhcakmibfddphfigagfnn
URL Chính Thức https://chromewebstore.google.com/detail/disable-ynet-auto-refresh/mmlhdonlemejhcakmibfddphfigagfnn
Mô tả Disables Ynet from auto refreshing every 15 minutes
Kích Thước Tệp 43.22 KB
Số Lần Cài Đặt 1,063
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-07-19
Ngày Phát Hành 2015-07-19
Đánh Giá 2.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển atlanteh
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}