(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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย (NO)tifications
ดาวน์โหลดไฟล์ส่วนขยาย (NO)tifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } |