Stack notifications
Tool to get Chrome notifications for Stack Exchange.
什麼是Stack notifications?
Stack notifications是由fralec開發的Chrome擴展程式,該擴展的主要功能是“Tool to get Chrome notifications for Stack Exchange.”。
擴展截圖
下載Stack notifications擴展crx文件
下載Stack notifications擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It's a simple Chrome extension to show you your Stack Exchange notification as Chrome notification.
When you get something in one of the Stack Exchange sites, a notification will be clickable on your screen, you can click it and it open a new tab with the content. Enjoy :)
Setup :
1. Install the extension, then a Chrome popup will pop and you can log in with your Stack Exchange account.
2. Go to a Stack Exchange get some notifications ;)
Information about permissions :
- storage: to store the token.
- notifications: to show you notifications
- contextMenus: to add "report a bug" menu
- identity: for the oAuth2 Stack Exchange API
- https://api.stackexchange.com/* to log you in
- http://cdn.sstatic.net/* to show you picture in the notification
Report an issue:
https://github.com/fralec/Stack-notifications/issues/new 擴展基本資訊
| 名稱 | |
| ID | cgamemjjkiapnidkadephhkneocmcino |
| 官方網址 | https://chromewebstore.google.com/detail/stack-notifications/cgamemjjkiapnidkadephhkneocmcino |
| 簡介 | Tool to get Chrome notifications for Stack Exchange. |
| 檔案大小 | 60.81 KB |
| 安裝次數 | 10 |
| 目前版本 | 0.1.3 |
| 更新時間 | 2016-10-01 |
| 上架時間 | 2016-10-01 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | fralec |
| 付費類型 | free |
| 擴展官網 | https://fralec.github.io/Stack-notifications |
| 說明頁面URL | https://github.com/fralec/Stack-notifications/issues/new |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Stack notifications",
"version": "0.1.3",
"description": "Tool to get Chrome notifications for Stack Exchange.",
"author": "Fralec",
"homepage_url": "https:\/\/fralec.github.io\/Stack-notifications",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"storage",
"notifications",
"contextMenus",
"identity",
"https:\/\/api.stackexchange.com\/*",
"http:\/\/cdn.sstatic.net\/*"
],
"browser_action": {
"default_icon": "icons\/se128.png",
"default_title": "Stack notifications",
"default_popup": "popup.html"
},
"oauth2": {
"client_id": "7951",
"scopes": [
"no_expiry",
"read_inbox"
]
},
"icons": {
"16": "icons\/se16.png",
"32": "icons\/se32.png",
"128": "icons\/se128.png"
},
"offline_enabled": false
} | |