Github Vanced
An ultimate chrome extension to customize and streamline your GitHub experience!
什么是Github Vanced?
Github Vanced是由bhumijgupta开发的Chrome扩展程序,该扩展的主要功能是“An ultimate chrome extension to customize and streamline your GitHub experience!”。
扩展截图
下载Github Vanced扩展crx文件
下载Github Vanced扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection Features - 1. Website wide dark mode 2. Colors contribution chart to avoid distraction 3. Easy toggle switches to enable and disable features
扩展基本信息
名称 | |
ID | apidmenkobkfjiffjmapgjdapmpaneck |
官方URL | https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck |
简介 | An ultimate chrome extension to customize and streamline your GitHub experience! |
文件大小 | 57.45 KB |
安装次数 | 45 |
当前版本 | 0.8.4 |
更新时间 | 2019-07-12 |
上架时间 | 2019-07-12 |
评分 | 5.00/5 共1次评分 |
开发者 | bhumijgupta |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/bhumijgupta/Github-vanced |
帮助页面URL | https://github.com/bhumijgupta/Github-vanced/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Vanced", "description": "An ultimate chrome extension to customize and streamline your GitHub experience!", "version": "0.8.4", "author": "Bhumij Gupta", "icons": { "16": "assets\/icon_16.png", "32": "assets\/icon_32.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "colorify.js", "darktheme.js" ], "run_at": "document_end" } ], "options_page": "popup.html", "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ] } |