Awesome Stars

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

Co je Awesome Stars?

Awesome Stars je rozšíření Chrome vyvinuté henry40408, a jeho hlavní funkcí je „Awesome Stars is a chrome extension that shows you stars of repository on awesome list.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Awesome Stars

Stáhněte si soubory rozšíření Awesome Stars ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Awesome Stars Awesome Stars
ID lcokkcbdmicofdahlooopcpinogephfb
Oficiální URL https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb
Popis Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
Velikost souboru 305 KB
Počet instalací 170
Aktuální Verze 2.3.0
Poslední Aktualizace 2017-11-06
Datum Vydání 2017-11-06
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář henry40408
Typ Platby free
Webové stránky Rozšíření https://github.com/henry40408/awesome-stars
Podporované Jazyky 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"
    ]
}