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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Stack notifications |
ID | cgamemjjkiapnidkadephhkneocmcino |
공식 URL | 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 } |