Starify Github repo links
Add Github Stars badges to Github project links
What is Starify Github repo links?
Starify Github repo links is a Chrome extension developed by https://itenium.be, and its main feature is "Add Github Stars badges to Github project links".
Extension Screenshots
Download Starify Github repo links Extension CRX File
Download Starify Github repo links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | kpficnopciffopkhjpckhkgmnlakcmig |
Official URL | https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig |
Description | Add Github Stars badges to Github project links |
File Size | 9.86 KB |
Installation Count | 17 |
Current Version | 1.7 |
Last Updated | 2020-04-27 |
Publish Date | 2020-04-25 |
Rating | 1.00/5 Total 1 Ratings |
Developer | https://itenium.be |
[email protected] | |
Payment Type | free |
Extension Website | https://itenium.be/blog/javascript/starify-github-links/ |
Supported Languages | 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" } } |