(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
(NO)tifications क्या है?
(NO)tifications Jonathan Woodard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide the unread messages title bar alerts on distracting websites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में (NO)tifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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'" } |