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 |
官方網址 | 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" ] } |