Github Star Count
When you view an awesome page, add star count to github repository links.
Vad är Github Star Count?
Github Star Count är en Chrome-tillägg utvecklad av progzhangchao, och dess huvudfunktion är "When you view an awesome page, add star count to github repository links.".
Tilläggsskärmbilder
Ladda ner Github Star Count-förlängningens CRX-fil
Ladda ner Github Star Count-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | jahogeehepfohgakggfeeimokcgnmdid |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid |
| Beskrivning | When you view an awesome page, add star count to github repository links. |
| Filstorlek | 7.4 KB |
| Antal Installationer | 210 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2021-03-10 |
| Publiceringsdatum | 2021-03-09 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | progzhangchao |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Stödda Språk | 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"
]
}
} | |