Stack notifications
Tool to get Chrome notifications for Stack Exchange.
Stack notifications là gì?
Stack notifications là một tiện ích mở rộng Chrome được phát triển bởi fralec, và tính năng chính của nó là "Tool to get Chrome notifications for Stack Exchange.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Stack notifications
Tải xuống các tệp mở rộng Stack notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Stack notifications |
ID | cgamemjjkiapnidkadephhkneocmcino |
URL Chính Thức | https://chromewebstore.google.com/detail/stack-notifications/cgamemjjkiapnidkadephhkneocmcino |
Mô tả | Tool to get Chrome notifications for Stack Exchange. |
Kích Thước Tệp | 60.81 KB |
Số Lần Cài Đặt | 10 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2016-10-01 |
Ngày Phát Hành | 2016-10-01 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | fralec |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://fralec.github.io/Stack-notifications |
URL Trang Trợ Giúp | https://github.com/fralec/Stack-notifications/issues/new |
Ngôn Ngữ Được Hỗ Trợ | 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 } |