(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

(NO)tifications란 무엇입니까?

(NO)tifications은(는) Jonathan Woodard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide the unread messages title bar alerts on distracting websites."입니다.

확장 프로그램 스크린샷

screenshot

(NO)tifications 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
공식 URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
설명 Hide the unread messages title bar alerts on distracting websites.
파일 크기 309 KB
설치 횟수 10
현재 버전 1.0.0.2
최근 업데이트 2012-08-29
출시 날짜 2012-08-29
평점 5.00/5 총 4 개의 평점
개발자 Jonathan Woodard
결제 유형 free
확장 프로그램 웹 사이트 http://woodar.dj
지원되는 언어 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'"
}