Better Github
Enhance your code reading experience on GitHub
什么是Better Github?
Better Github是由ceoshikhar开发的Chrome扩展程序,该扩展的主要功能是“Enhance your code reading experience on GitHub”。
扩展截图
下载Better Github扩展crx文件
下载Better Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extensions allows you to change font and it's size of code text on GitHub. You have to provide a font name and size to be applied to all code text on GitHub.
扩展基本信息
名称 | Better Github |
ID | ammeaejgjdeifjekkofhnliedhccbmgp |
官方URL | https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp |
简介 | Enhance your code reading experience on GitHub |
文件大小 | 59.88 KB |
安装次数 | 13 |
当前版本 | 1.2.0 |
更新时间 | 2022-01-16 |
上架时间 | 2021-05-18 |
评分 | 5.00/5 共2次评分 |
开发者 | ceoshikhar |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ceoshikhar/better-github |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Github", "version": "1.2.0", "description": "Enhance your code reading experience on GitHub", "content_scripts": [ { "js": [ "better-github.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ] } ], "permissions": [ "storage" ], "browser_action": { "default_title": "Better Github", "default_icon": ".\/assets\/favicon.png", "default_popup": "popup.html" }, "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" } } |