Starify Github repo links
Add Github Stars badges to Github project links
Was ist Starify Github repo links?
Starify Github repo links ist eine Chrome-Erweiterung, die von https://itenium.be entwickelt wurde, und ihr Hauptmerkmal ist "Add Github Stars badges to Github project links".
Erweiterungsscreenshots
Starify Github repo links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Starify Github repo links-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
Scans all links on a page and adds a Github Stars badge to a Github project links. Use Control + Alt + G to activate.
Runs immediately on Google search results, StackOverflow sites, Github.com, npmjs.com etc. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kpficnopciffopkhjpckhkgmnlakcmig |
| Offizielle URL | https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig |
| Beschreibung | Add Github Stars badges to Github project links |
| Dateigröße | 9.86 KB |
| Installationsanzahl | 17 |
| Aktuelle Version | 1.7 |
| Letztes Update | 2020-04-27 |
| Veröffentlichungsdatum | 2020-04-25 |
| Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://itenium.be |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://itenium.be/blog/javascript/starify-github-links/ |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"permissions": [
"activeTab",
"webRequest",
"https:\/\/img.shields.io\/"
],
"manifest_version": 2,
"content_scripts": [
{
"exclude_globs": [],
"include_globs": [
"*"
],
"js": [
"github-stars.user.js"
],
"matches": [
"http:\/\/*\/*",
"file:\/\/\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
],
"converted_from_user_script": true,
"description": "Add Github Stars badges to Github project links",
"name": "Starify Github repo links",
"short_name": "GithubStarifyLinks",
"version": "1.7",
"content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' 'sha256-WOdSzz11\/3cpqOdrm89LBL2UPwEU9EhbDtMy2OciEhs='",
"icons": {
"128": "favicon.png"
}
} | |