TeamCity Notifier

Shows notifications about various events in TeamCity

TeamCity Notifierคืออะไร?

TeamCity Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JetBrains และคุณลักษณะหลักของมันคือ "Shows notifications about various events in TeamCity"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeamCity Notifier

ดาวน์โหลดไฟล์ส่วนขยาย TeamCity Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}