Make GitHub Great Again
Extension to make GitHub great again!
什么是Make GitHub Great Again?
Make GitHub Great Again是由https://dennissnijder.github.io/MakeGithubGreatAgain开发的Chrome扩展程序,该扩展的主要功能是“Extension to make GitHub great again!”。
扩展截图
下载Make GitHub Great Again扩展crx文件
下载Make GitHub Great Again扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get your old Github back. Remove the new dark topbar.
https://github.com/DennisSnijder/MakeGithubGreatAgain 扩展基本信息
| 名称 | |
| ID | gpejlkhibgecggplgogpbgbdpnhogmhk |
| 官方URL | https://chromewebstore.google.com/detail/make-github-great-again/gpejlkhibgecggplgogpbgbdpnhogmhk |
| 简介 | Extension to make GitHub great again! |
| 文件大小 | 528 KB |
| 安装次数 | 681 |
| 当前版本 | 2.0.1 |
| 更新时间 | 2017-08-29 |
| 上架时间 | 2017-08-29 |
| 评分 | 4.71/5 共38次评分 |
| 开发者 | https://dennissnijder.github.io/MakeGithubGreatAgain |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/DennisSnijder/MakeGithubGreatAgain |
| 帮助页面URL | https://github.com/DennisSnijder/MakeGithubGreatAgain |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Make GitHub Great Again",
"version": "2.0.1",
"description": "Extension to make GitHub great again!",
"minimum_chrome_version": "26",
"icons": {
"16": "assets\/icon_16.png",
"48": "assets\/icon_48.png",
"128": "assets\/icon_128.png"
},
"page_action": {
"default_title": "Toggle light\/dark header"
},
"permissions": [
"storage"
],
"background": {
"persistent": false,
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*",
"*:\/\/*.github.com\/*"
],
"js": [
"src\/content_script.js"
],
"css": [
"src\/header.css",
"src\/links.css",
"src\/save-the-colors.css",
"src\/fonts.css"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "src\/options.html",
"chrome_style": true
}
} | |