Github Stars Manager

This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

Github Stars Manager là gì?

Github Stars Manager là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Godoy, và tính năng chính của nó là "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".

Ả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 Github Stars Manager

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

                        This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.                    

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

Tên Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
URL Chính Thức https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Mô tả This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 245
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2018-05-23
Ngày Phát Hành 2018-05-23
Đánh Giá 3.83/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Gabriel Godoy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gabrielgodoy/github-stars-manager
URL Trang Trợ Giúp https://github.com/gabrielgodoy/github-stars-manager/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Stars Manager",
    "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.",
    "version": "1.9",
    "browser_action": {
        "default_icon": "src\/assets\/images\/icons\/icon.png"
    },
    "icons": {
        "16": "src\/assets\/images\/icons\/icon16.png",
        "48": "src\/assets\/images\/icons\/icon48.png",
        "128": "src\/assets\/images\/icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "bookmarks",
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "dist\/content_script.js"
            ],
            "css": [
                "dist\/main.css"
            ]
        }
    ]
}