(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

(NO)tifications là gì?

(NO)tifications là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Woodard, và tính năng chính của nó là "Hide the unread messages title bar alerts on distracting websites.".

Ả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 (NO)tifications

Tải xuống các tệp mở rộng (NO)tifications 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

                        Seeing the 'unread' count notifications in the title bar for some sites can be very distracting. This removes them from a few popular sites! Selectively disables notifications for Gmail, Facebook and Twitter.                    

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

Tên (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
URL Chính Thức https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Mô tả Hide the unread messages title bar alerts on distracting websites.
Kích Thước Tệp 309 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 1.0.0.2
Cập Nhật Lần Cuối 2012-08-29
Ngày Phát Hành 2012-08-29
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Jonathan Woodard
Loại Thanh Toán free
Trang Web Mở Rộng http://woodar.dj
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "(NO)tifications",
    "version": "1.0.0.2",
    "manifest_version": 2,
    "description": "Hide the unread messages title bar alerts on distracting websites.",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/plus.google.com\/*"
            ],
            "js": [
                "hide_count.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}