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開發的Chrome擴展程式,該擴展的主要功能是“Quickly see your notifications in a popup without leaving the current page”。
擴展截圖
下載Notifications Preview for GitHub擴展crx文件
下載Notifications Preview for GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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) 擴展基本資訊
| 名稱 | |
| ID | kgilejfahkjidpaclkepbdoeioeohfmj |
| 官方網址 | 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"
}
} | |