Awesome Stars

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

Awesome Starsคืออะไร?

Awesome Stars เป็นส่วนขยายของ Chrome ที่พัฒนาโดย henry40408 และคุณลักษณะหลักของมันคือ "Awesome Stars is a chrome extension that shows you stars of repository on awesome list."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Awesome Stars Awesome Stars
ID lcokkcbdmicofdahlooopcpinogephfb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb
คำอธิบาย Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
ขนาดไฟล์ 305 KB
จำนวนการติดตั้ง 170
เวอร์ชันปัจจุบัน 2.3.0
อัปเดตครั้งล่าสุด 2017-11-06
วันที่เผยแพร่ 2017-11-06
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา henry40408
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/henry40408/awesome-stars
ภาษาที่รองรับ 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"
    ]
}