Notify
Checks for unread messages from various sites.
Notify क्या है?
Notify Gregory द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks for unread messages from various sites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Notify checks popular sites for new messages. This extension will save you -------------------------------- Time - From no longer needing to constantly check various tabs for updates. -------------------------------- Computer Resources - Rather than having the tabs open to be alerted to new messages, these resources can now be freed up. That means less memory usage, and less processing power, which means longer battery life. -------------------------------- Focus - You can now stay focused on other things and be alerted only when your attention is needed. Sites Currently Supported -------------------------------- Facebook Google Mail Google Voice This extension is completely open source as well. Feel free to download and play around with, modify, or contribute to this project. Find it here: https://github.com/isGregory/Notify
एक्सटेंशन की मूल जानकारी
नाम | Notify |
ID | melaljjgehbcjeljebdngoohjobhleko |
आधिकारिक URL | https://chromewebstore.google.com/detail/notify/melaljjgehbcjeljebdngoohjobhleko |
विवरण | Checks for unread messages from various sites. |
फ़ाइल का आकार | 12.05 KB |
स्थापना संख्या | 64 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2015-06-21 |
प्रकाशन तिथि | 2015-06-20 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | Gregory |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Notify", "description": "Checks for unread messages from various sites.", "version": "1.0.4", "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Notify" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "alarms", "https:\/\/www.facebook.com\/", "https:\/\/mail.google.com\/mail\/feed\/*", "https:\/\/www.google.com\/voice\/request\/*", "http:\/\/google.com\/voice\/request\/*" ] } |