Starify Github repo links
Add Github Stars badges to Github project links
Hvad er Starify Github repo links?
Starify Github repo links er en Chrome-udvidelse udviklet af https://itenium.be, og dens hovedfunktion er "Add Github Stars badges to Github project links".
Udvidelsesskærmbilleder
Download Starify Github repo links-udvidelses-CRX-fil
Download Starify Github repo links-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
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | kpficnopciffopkhjpckhkgmnlakcmig |
Officiel URL | https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig |
Beskrivelse | Add Github Stars badges to Github project links |
Filstørrelse | 9.86 KB |
Antal Installationer | 17 |
Nuværende Version | 1.7 |
Senest Opdateret | 2020-04-27 |
Udgivelsesdato | 2020-04-25 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | https://itenium.be |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://itenium.be/blog/javascript/starify-github-links/ |
Understøttede Sprog | 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" } } |