TeamCity Notifier

Shows notifications about various events in TeamCity

TeamCity Notifier란 무엇입니까?

TeamCity Notifier은(는) JetBrains에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows notifications about various events in TeamCity"입니다.

확장 프로그램 스크린샷

screenshot

TeamCity Notifier 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TeamCity is a CI/CD server software developed by JetBrains. This extension enables browser notifications about various events like build failures and assigned investigations.                    

확장 프로그램 기본 정보

이름 TeamCity Notifier TeamCity Notifier
ID miolcigeeebinhdbihpodaajenfoggjl
공식 URL https://chromewebstore.google.com/detail/teamcity-notifier/miolcigeeebinhdbihpodaajenfoggjl
설명 Shows notifications about various events in TeamCity
파일 크기 543 KB
설치 횟수 4,067
현재 버전 0.0.20
최근 업데이트 2021-09-30
출시 날짜 2020-06-29
평점 3.00/5 총 8 개의 평점
개발자 JetBrains
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.jetbrains.com/teamcity/
개인정보 보호 정책 페이지 URL https://www.jetbrains.com/legal/docs/privacy/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TeamCity Notifier",
    "version": "0.0.20",
    "description": "Shows notifications about various events in TeamCity",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "background",
        ""
    ],
    "icons": {
        "16": "assets\/action-icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "96": "assets\/icon-96.png",
        "128": "assets\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/action-icon-disabled-16.png",
            "24": "assets\/action-icon-disabled-24.png",
            "32": "assets\/action-icon-disabled-32.png"
        },
        "default_title": "TeamCity Notifier",
        "default_popup": "dist\/popup.html"
    },
    "background": {
        "scripts": [
            "assets\/browser-polyfill.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "detect\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "assets\/browser-polyfill.js",
                "notify\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "dist\/options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "web_accessible_resources": [
        "detect\/inject.js",
        "notify\/inject.js"
    ]
}