Notifications Preview for GitHub
Quickly see your notifications in a popup without leaving the current page
Notifications Preview for GitHub क्या है?
Notifications Preview for GitHub Tanmay Rajani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly see your notifications in a popup without leaving the current page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notifications Preview for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Things it offers: * Allows to preview the unread notifications using pop-overs on hover looking exactly like the ones on the right (profile and new-repo) * Shows the count of notifications on the bell icon * Option to view only participating notifications * Allows to perform actions like marking as read and unsubscribing on the notifications More info/code at https://github.com/tanmayrajani/notifications-preview-github Found issues? Please log into the repo provided above. Cheers! Credits: - Icon made by https://www.flaticon.com/authors/google from https://www.flaticon.com is licensed by http://creativecommons.org/licenses/by/3.0/ (Creative Commons BY 3.0)
एक्सटेंशन की मूल जानकारी
नाम | Notifications Preview for GitHub |
ID | kgilejfahkjidpaclkepbdoeioeohfmj |
आधिकारिक URL | https://chromewebstore.google.com/detail/notifications-preview-for/kgilejfahkjidpaclkepbdoeioeohfmj |
विवरण | Quickly see your notifications in a popup without leaving the current page |
फ़ाइल का आकार | 30.9 KB |
स्थापना संख्या | 368 |
वर्तमान संस्करण | 23.4.6 |
अंतिम अपडेट | 2023-04-06 |
प्रकाशन तिथि | 2020-05-22 |
रेटिंग | 5.00/5 कुल 6 रेटिंग्स |
डेवलपर | Tanmay Rajani |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/tanmayrajani/notifications-preview-github |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notifications Preview for GitHub", "homepage_url": "https:\/\/github.com\/tanmayrajani\/notifications-preview-github", "version": "23.4.6", "manifest_version": 2, "minimum_chrome_version": "61", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "55.0" } }, "permissions": [ "storage" ], "description": "Quickly see your notifications in a popup without leaving the current page", "icons": { "128": "\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "\/github-notifications-preview.css" ], "js": [ "\/options-storage.js", "\/github-notifications-preview.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "\/options-storage.js" ] }, "options_ui": { "chrome_style": true, "page": "\/options.html" } } |