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