Github Star Count

When you view an awesome page, add star count to github repository links.

Wat is Github Star Count?

Github Star Count is een Chrome-extensie ontwikkeld door progzhangchao, en de belangrijkste functie is "When you view an awesome page, add star count to github repository links.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Github Star Count

Download Github Star Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        When you view an awesome page on github site,  such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.                    

Basisinformatie over de Extensie

Naam Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
Officiële URL https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
Beschrijving When you view an awesome page, add star count to github repository links.
Bestandsgrootte 7.4 KB
Aantal Installaties 210
Huidige Versie 1.0
Laatst Bijgewerkt 2021-03-10
Publicatiedatum 2021-03-09
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar progzhangchao
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Star Count",
    "version": "1.0",
    "description": "When you view an awesome page, add star count to github repository links.",
    "author": "progzhangchao",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}