Hatena::Notify

Get your notifications from Hatena

Was ist Hatena::Notify?

Hatena::Notify ist eine Chrome-Erweiterung, die von https://www.hatena.ne.jp entwickelt wurde, und ihr Hauptmerkmal ist "Get your notifications from Hatena".

Erweiterungsscreenshots

screenshot
screenshot

Hatena::Notify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hatena::Notify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        はてなの各サービスからのお知らせ通知を受け取る、はてなオフィシャルの拡張です。

はてなのお知らせ拡張では、自分のブログにコメントが付いた、ブックマークコメントにスターが付いた、などといったはてなの各サービスからの通知をまとめて受け取ることができます。

未読の通知がある場合、拡張アイコンに未読の通知数が表示されます。また新しい通知が届いた場合、Chromeのデスクトップ通知にも表示されます。

拡張アイコンをクリックすると通知が一覧で表示されます。未読の通知の場合、通知一覧では背景が黄色で表示されます。

この通知はウェブのどこを見ていても受け取ることができます。はてな各サービスからの通知にすぐ気づくことができます。                    

Grundlegende Informationen zur Erweiterung

Name Hatena::Notify Hatena::Notify
ID djnlmphamjelmfnafkmkhepdcadaaogh
Offizielle URL https://chromewebstore.google.com/detail/hatenanotify/djnlmphamjelmfnafkmkhepdcadaaogh
Beschreibung Get your notifications from Hatena
Dateigröße 19.14 KB
Installationsanzahl 20,000
Aktuelle Version 0.0.7
Letztes Update 2019-12-24
Veröffentlichungsdatum 2019-12-24
Bewertung 4.38/5 Insgesamt 24 Bewertungen
Entwickler https://www.hatena.ne.jp
Zahlungsart free
Unterstützte Sprachen en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.7",
    "description": "__MSG_extDescription__",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.hatena.ne.jp\/notify\/notices.iframe*",
                "*:\/\/www.hatena.com\/notify\/notices.iframe*"
            ],
            "js": [
                "installed.content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "cookies",
        "background",
        "http:\/\/*.hatena.ne.jp\/",
        "https:\/\/*.hatena.ne.jp\/",
        "http:\/\/*.hatena.com\/",
        "https:\/\/*.hatena.com\/"
    ],
    "default_locale": "en"
}