Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
Cos'è Awesome Stars?
Awesome Stars è un'estensione di Chrome sviluppata da henry40408, e la sua funzione principale è "Awesome Stars is a chrome extension that shows you stars of repository on awesome list.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Awesome Stars
Scarica i file di estensione Awesome Stars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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!                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | lcokkcbdmicofdahlooopcpinogephfb | 
| URL Ufficiale | https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb | 
| Descrizione | Awesome Stars is a chrome extension that shows you stars of repository on awesome list. | 
| Dimensione del File | 305 KB | 
| Conteggio Installazioni | 170 | 
| Versione Corrente | 2.3.0 | 
| Ultimo Aggiornamento | 2017-11-06 | 
| Data di Pubblicazione | 2017-11-06 | 
| Valutazione | 5.00/5 Totale 3 Valutazioni | 
| Sviluppatore | henry40408 | 
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/henry40408/awesome-stars | 
| Lingue Supportate | 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"
    ]
}  |  |