Github Star Count
When you view an awesome page, add star count to github repository links.
Was ist Github Star Count?
Github Star Count ist eine Chrome-Erweiterung, die von progzhangchao entwickelt wurde, und ihr Hauptmerkmal ist "When you view an awesome page, add star count to github repository links.".
Erweiterungsscreenshots
Github Star Count-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Star Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jahogeehepfohgakggfeeimokcgnmdid |
| Offizielle URL | https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid |
| Beschreibung | When you view an awesome page, add star count to github repository links. |
| Dateigröße | 7.4 KB |
| Installationsanzahl | 210 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2021-03-10 |
| Veröffentlichungsdatum | 2021-03-09 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | progzhangchao |
| [email protected] | |
| Zahlungsart | in_app |
| Unterstützte Sprachen | 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"
]
}
} | |