Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
O que é Awesome Stars?
Awesome Stars é uma extensão do Chrome desenvolvida por henry40408, e sua principal característica é "Awesome Stars is a chrome extension that shows you stars of repository on awesome list.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Awesome Stars
Baixe arquivos de extensão Awesome Stars no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Awesome Stars |
ID | lcokkcbdmicofdahlooopcpinogephfb |
URL Oficial | https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb |
Descrição | Awesome Stars is a chrome extension that shows you stars of repository on awesome list. |
Tamanho do Arquivo | 305 KB |
Contagem de Instalações | 170 |
Versão Atual | 2.3.0 |
Última Atualização | 2017-11-06 |
Data de Publicação | 2017-11-06 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | henry40408 |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/henry40408/awesome-stars |
Idiomas Suportados | 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" ] } |