Backlog Watch Notifications

Backlogでウォッチした課題やお知らせに更新があった際にデスクトップ通知を表示します

Backlog Watch Notifications란 무엇입니까?

Backlog Watch Notifications은(는) ongaq에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Backlogでウォッチした課題やお知らせに更新があった際にデスクトップ通知を表示します"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Backlog Watch Notifications 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Backlogのダッシュボードにウォッチ中の課題を固定表示
- 拡張機能のアイコンクリックでウォッチ中の課題を一覧表示
- ウォッチした課題やお知らせに更新があった際にデスクトップ通知

2023/04/10
- v2.0.0にアップデート

詳細な更新履歴はこちら
https://backlog.4kissa.me/history.html                    

확장 프로그램 기본 정보

이름 Backlog Watch Notifications Backlog Watch Notifications
ID hgbfbnmhafkhigfegihpgapnmnmlfhgd
공식 URL https://chromewebstore.google.com/detail/backlog-watch-notificatio/hgbfbnmhafkhigfegihpgapnmnmlfhgd
설명 Backlogでウォッチした課題やお知らせに更新があった際にデスクトップ通知を表示します
파일 크기 46.35 KB
설치 횟수 997
현재 버전 2.0.4
최근 업데이트 2023-05-31
출시 날짜 2020-01-23
평점 5.00/5 총 1 개의 평점
개발자 ongaq
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://backlog.4kissa.me/history.html
도움말 페이지 URL https://github.com/ongaq/backlogWatch
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Backlog Watch Notifications",
    "version": "2.0.4",
    "description": "Backlog\u3067\u30a6\u30a9\u30c3\u30c1\u3057\u305f\u8ab2\u984c\u3084\u304a\u77e5\u3089\u305b\u306b\u66f4\u65b0\u304c\u3042\u3063\u305f\u969b\u306b\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u901a\u77e5\u3092\u8868\u793a\u3057\u307e\u3059",
    "minimum_chrome_version": "90.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Backlog Watch Notifications",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.backlog.jp\/*",
                "*:\/\/*.backlog.com\/*"
            ],
            "css": [
                "css\/contents_style.css"
            ],
            "js": [
                "import-storage.js",
                "import-common.js",
                "import-issues.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.backlog.jp\/*",
                "*:\/\/*.backlog.com\/*"
            ],
            "resources": [
                "storage.js",
                "common.js",
                "issues.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/*"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "storage.js",
                "common.js",
                "issues.js"
            ],
            "matches": [
                "*:\/\/*.backlog.jp\/*",
                "*:\/\/*.backlog.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "permissions": [
        "alarms",
        "storage",
        "notifications",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*.backlog.jp\/*",
        "*:\/\/*.backlog.com\/*"
    ]
}