Desktop Notifications for Stack Exchange

Real-time desktop notifications for the Stack Exchange.

Desktop Notifications for Stack Exchange란 무엇입니까?

Desktop Notifications for Stack Exchange은(는) Rob W에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Real-time desktop notifications for the Stack Exchange."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Desktop Notifications for Stack Exchange 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Key features:

- Real-time desktop notifications for the inbox of any user.
- Configurable behaviour for clicking on the notification.
- Opt-in to keep the extension running when Chrome is closed.
- Don't want to receive notifications any more? Visit options and click on Stop.
- Unread count displayed on button.
- Desktop notifications can be disabled.
- Your StackExchange inbox is shown in the panel at the extension button.

After installation, request an API token at the options page to get real-time notifications of new messages.
Alternatively, only set a StackExchange ID without granting the token. (not recommended, because this token is needed for getting the unread count at any given time).

Permissions warnings:

- Notifications - To display desktop notifications
- Tabs - To focus the new window after clicking on the notification

Also available as a Firefox Add-on:
https://addons.mozilla.org/en-US/firefox/addon/real-time-desktop-notificat/

Support and information:
https://stackapps.com/q/3780/9699

Privacy policy:
You may specify a StackExchange ID (and optionally use StackExchange's mechanism to grant an StackExchange API token) to enable the extension to function. This data is stored locally only, and only used with the StackExchange API to receive notifications for inbox messages. No other data is collected, and the data is not used for any other purpose.                    

확장 프로그램 기본 정보

이름 Desktop Notifications for Stack Exchange Desktop Notifications for Stack Exchange
ID ijglncoabcgieiokjmgdogpefdblmnle
공식 URL https://chromewebstore.google.com/detail/desktop-notifications-for/ijglncoabcgieiokjmgdogpefdblmnle
설명 Real-time desktop notifications for the Stack Exchange.
파일 크기 26.63 KB
설치 횟수 526
현재 버전 2.2
최근 업데이트 2021-09-15
출시 날짜 2019-02-27
평점 4.87/5 총 15 개의 평점
개발자 Rob W
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://stackapps.com/q/3780/9699
도움말 페이지 URL https://github.com/Rob--W/stackexchange-notifications/issues
개인정보 보호 정책 페이지 URL https://robwu.nl/privacy/cws
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desktop Notifications for Stack Exchange",
    "description": "Real-time desktop notifications for the Stack Exchange.",
    "homepage_url": "https:\/\/stackapps.com\/q\/3780\/9699",
    "version": "2.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "localStorage-proxy.js",
            "stackexchange-inbox-api.js",
            "stackexchange-inbox-api-chrome.js",
            "using-websocket.js",
            "bridge.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackexchange.com\/oauth\/login_success*"
            ],
            "run_at": "document_end",
            "js": [
                "login_success.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "optional_permissions": [
        "background"
    ],
    "browser_action": {
        "default_popup": "inbox.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/api.stackexchange.com\/*",
        "notifications",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}