Starify Github repo links
Add Github Stars badges to Github project links
什么是Starify Github repo links?
Starify Github repo links是由https://itenium.be开发的Chrome扩展程序,该扩展的主要功能是“Add Github Stars badges to Github project links”。
扩展截图
下载Starify Github repo links扩展crx文件
下载Starify Github repo links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | kpficnopciffopkhjpckhkgmnlakcmig |
| 官方URL | https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig |
| 简介 | Add Github Stars badges to Github project links |
| 文件大小 | 9.86 KB |
| 安装次数 | 17 |
| 当前版本 | 1.7 |
| 更新时间 | 2020-04-27 |
| 上架时间 | 2020-04-25 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | https://itenium.be |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://itenium.be/blog/javascript/starify-github-links/ |
| 支持的语言 | 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"
}
} | |