(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

ما هو (NO)tifications؟

(NO)tifications هو إضافة Chrome تم تطويرها بواسطة Jonathan Woodard، والميزة الرئيسية لها هي "Hide the unread messages title bar alerts on distracting websites.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة (NO)tifications

قم بتنزيل ملفات الامتداد (NO)tifications بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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'"
}