TeamCity Notifier

Shows notifications about various events in TeamCity

TeamCity Notifier là gì?

TeamCity Notifier là một tiện ích mở rộng Chrome được phát triển bởi JetBrains, và tính năng chính của nó là "Shows notifications about various events in TeamCity".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TeamCity Notifier

Tải xuống các tệp mở rộng TeamCity Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TeamCity Notifier TeamCity Notifier
ID miolcigeeebinhdbihpodaajenfoggjl
URL Chính Thức https://chromewebstore.google.com/detail/teamcity-notifier/miolcigeeebinhdbihpodaajenfoggjl
Mô tả Shows notifications about various events in TeamCity
Kích Thước Tệp 543 KB
Số Lần Cài Đặt 4,067
Phiên Bản Hiện Tại 0.0.20
Cập Nhật Lần Cuối 2021-09-30
Ngày Phát Hành 2020-06-29
Đánh Giá 3.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển JetBrains
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.jetbrains.com/teamcity/
URL Trang Chính Sách Bảo Mật https://www.jetbrains.com/legal/docs/privacy/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}