Stack Exchange questions notifications
Emits desktop notifications for newly asked/active questions on SE sites
Stack Exchange questions notifications란 무엇입니까?
Stack Exchange questions notifications은(는) vaultah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Emits desktop notifications for newly asked/active questions on SE sites"입니다.
확장 프로그램 스크린샷
Stack Exchange questions notifications 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple extension that fetches the latest questions from pages of Stack Exchange sites. Stack Exchange sites perform question filtering in browser, and I don't want to roll out a fragile tag filtering logic which may break after some minor change on their side. Therefore, this extension listens to DOM changes. It will only work if you open the main page or a page like the one on the screenshot. For each new question this extension plays a notification sound and displays a clickable desktop notification. Clicking on the desktop notification will open a new tab with the corresponding question. This extension is licensed under MIT and is available on GitHub and Chrome Web Store.
확장 프로그램 기본 정보
이름 | Stack Exchange questions notifications |
ID | dbikeaiagnndkbbeeimonfahdmpfgiib |
공식 URL | https://chromewebstore.google.com/detail/stack-exchange-questions/dbikeaiagnndkbbeeimonfahdmpfgiib |
설명 | Emits desktop notifications for newly asked/active questions on SE sites |
파일 크기 | 43.9 KB |
설치 횟수 | 13 |
현재 버전 | 1.7.0 |
최근 업데이트 | 2017-02-08 |
출시 날짜 | 2017-02-08 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | vaultah |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/vaultah/se-questions-notifications |
도움말 페이지 URL | https://twitter.com/vaultah |
지원되는 언어 | en-GB |
manifest.json | |
{ "content_scripts": [ { "css": [ "styles.css" ], "js": [ "jquery-3.1.1.min.js", "main.js" ], "matches": [ "*:\/\/*.stackexchange.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/*.mathoverflow.net\/*", "*:\/\/*.stackapps.com\/*", "*:\/\/*.serverfault.com\/*", "*:\/\/*.superuser.com\/*", "*:\/\/*.askubuntu.com\/*" ], "include_globs": [ "*\/", "*\/questions*" ], "exclude_globs": [ "*questions\/0*", "*questions\/1*", "*questions\/2*", "*questions\/3*", "*questions\/4*", "*questions\/5*", "*questions\/6*", "*questions\/7*", "*questions\/8*", "*questions\/9*" ], "run_at": "document_end" } ], "description": "Emits desktop notifications for newly asked\/active questions on SE sites", "icons": { "128": "icon_128.png" }, "manifest_version": 2, "name": "Stack Exchange questions notifications", "permissions": [ "notifications" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.7.0", "web_accessible_resources": [ "sound.wav", "icon_128.png" ] } |