Github Star Count

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

Hvad er Github Star Count?

Github Star Count er en Chrome-udvidelse udviklet af progzhangchao, og dens hovedfunktion er "When you view an awesome page, add star count to github repository links.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Github Star Count-udvidelses-CRX-fil

Download Github Star Count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
Officiel URL https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
Beskrivelse When you view an awesome page, add star count to github repository links.
Filstørrelse 7.4 KB
Antal Installationer 210
Nuværende Version 1.0
Senest Opdateret 2021-03-10
Udgivelsesdato 2021-03-09
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler progzhangchao
E-mail [email protected]
Betalingsmetode in_app
Understøttede Sprog 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"
        ]
    }
}