Awesome Stars

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

什麼是Awesome Stars?

Awesome Stars是由henry40408開發的Chrome擴展程式,該擴展的主要功能是“Awesome Stars is a chrome extension that shows you stars of repository on awesome list.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Awesome Stars擴展crx文件

下載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
官方網址 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"
    ]
}