Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
Qu'est-ce que Awesome Stars ?
Awesome Stars est une extension Chrome développée par henry40408, et sa fonction principale est "Awesome Stars is a chrome extension that shows you stars of repository on awesome list.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Awesome Stars
Téléchargez les fichiers d'extension Awesome Stars au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Awesome Stars |
ID | lcokkcbdmicofdahlooopcpinogephfb |
URL Officiel | https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb |
Description | Awesome Stars is a chrome extension that shows you stars of repository on awesome list. |
Taille du Fichier | 305 KB |
Nombre d'Installations | 170 |
Version Actuelle | 2.3.0 |
Dernière Mise à Jour | 2017-11-06 |
Date de Publication | 2017-11-06 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | henry40408 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/henry40408/awesome-stars |
Langues Prises en Charge | 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" ] } |