Release Notifier for Github

Unofficial "polyfill" for watching Github releases.

Release Notifier for Github là gì?

Release Notifier for Github là một tiện ích mở rộng Chrome được phát triển bởi CRIMX, và tính năng chính của nó là "Unofficial "polyfill" for watching Github releases.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Release Notifier for Github 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

                        It checks Github releases every 15 minutes and notifies releases by browser notification.

Fast & light-weight: It is loaded and run only when needed. It uses Github api and takes advantage of 403 cache. You can also switch to atom feeds for unsupported repos.

Source https://github.com/crimx/ext-github-release-notifier                    

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

Tên Release Notifier for Github Release Notifier for Github
ID gjhmlndokehcbkaockjlgeofgkiaiflg
URL Chính Thức https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg
Mô tả Unofficial "polyfill" for watching Github releases.
Kích Thước Tệp 175 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 0.2.6
Cập Nhật Lần Cuối 2020-02-06
Ngày Phát Hành 2020-02-06
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển CRIMX
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/crimx/ext-github-release-notifier
URL Trang Trợ Giúp https://github.com/crimx/ext-github-release-notifier/issues
URL Trang Chính Sách Bảo Mật https://www.crimx.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Release Notifier for Github",
    "short_name": "Release Notifier",
    "description": "Unofficial \"polyfill\" for watching Github releases.",
    "version": "0.2.6",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "64": "icon-64.png"
        },
        "default_popup": "popup.html",
        "default_title": "Everything is up to date."
    },
    "permissions": [
        "https:\/\/*.github.com\/*",
        "alarms",
        "identity",
        "storage",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "minimum_chrome_version": "55",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}