Awesome Stars

Awesome Stars is a chrome extension that shows you stars of repository on awesome list.

Awesome Stars là gì?

Awesome Stars là một tiện ích mở rộng Chrome được phát triển bởi henry40408, và tính năng chính của nó là "Awesome Stars is a chrome extension that shows you stars of repository on awesome list.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Awesome Stars is a chrome extension that shows you stars of repository on awesome list.

- README: https://github.com/henry40408/awesome-stars/blob/master/README.md
- CHANGELOG: https://github.com/henry40408/awesome-stars/blob/master/CHANGELOG.md
- GitHub: https://github.com/henry40408/awesome-stars

Feel free to contribute!                    

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

Tên Awesome Stars Awesome Stars
ID lcokkcbdmicofdahlooopcpinogephfb
URL Chính Thức https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb
Mô tả Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
Kích Thước Tệp 305 KB
Số Lần Cài Đặt 170
Phiên Bản Hiện Tại 2.3.0
Cập Nhật Lần Cuối 2017-11-06
Ngày Phát Hành 2017-11-06
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển henry40408
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/henry40408/awesome-stars
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "2.3.0",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__"
    },
    "options_page": "pages\/options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "images\/options-background.svg",
        "images\/options-logo.png",
        "images\/star-blue.svg",
        "images\/star-orange.svg",
        "images\/star-white.svg",
        "images\/star-yellow.svg"
    ],
    "permissions": [
        "storage"
    ]
}