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
公式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"
    ]
}