Backlog Notification Extension

Backlog のお知らせをメニューバーから通知・確認できる Web Extension です

Vad är Backlog Notification Extension?

Backlog Notification Extension är en Chrome-tillägg utvecklad av lollipop.onl, och dess huvudfunktion är "Backlog のお知らせをメニューバーから通知・確認できる Web Extension です".

Tilläggsskärmbilder

screenshot

Ladda ner Backlog Notification Extension-förlängningens CRX-fil

Ladda ner Backlog Notification Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        ※この拡張機能は Backlog API を使用した非公式なものです。

Backlog のお知らせの件数と一覧を確認できる拡張機能です。
一覧からは各課題を開いたり、その場で既読にしたりできます。

使い方:
1. 拡張機能の設定からスペースドメインとAPIキーを保存します
2. 拡張機能アイコンをクリックしてお知らせの一覧を表示します
3. お知らせをクリックするとリンクが開きます
4. メタキー(Windows: Ctrl / Mac: Command)と押しながらお知らせをクリックすると、課題を既読にできます
5. Shift キーと押しながらお知らせをクリックすると、課題キーとタイトルをコピーできます
6. すべてのお知らせを既読にします
7. 最近閲覧したプロジェクトにアクセスします
8. 最近閲覧した課題にアクセスします                    

Grundläggande Information om Tillägg

Namn Backlog Notification Extension Backlog Notification Extension
ID gmmfbpjchelnedibjoidghghnigggebn
Officiell webbadress https://chromewebstore.google.com/detail/backlog-notification-exte/gmmfbpjchelnedibjoidghghnigggebn
Beskrivning Backlog のお知らせをメニューバーから通知・確認できる Web Extension です
Filstorlek 2.02 MB
Antal Installationer 229
Aktuell Version 1.4.0
Senast Uppdaterad 2021-10-05
Publiceringsdatum 2021-07-13
Utvecklare lollipop.onl
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lollipop-onl/webextensions-backlog-notification
Stödda Språk ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.4.0",
    "name": "Backlog Notification Extension",
    "description": "Backlog \u306e\u304a\u77e5\u3089\u305b\u3092\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u304b\u3089\u901a\u77e5\u30fb\u78ba\u8a8d\u3067\u304d\u308b Web Extension \u3067\u3059",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "alarms",
        "storage",
        "https:\/\/*.backlog.com\/api\/v2\/*",
        "https:\/\/*.backlog.jp\/api\/v2\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}