Pint for GitHub
Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.
Pint for GitHub란 무엇입니까?
Pint for GitHub은(는) https://fuwa.sh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub."입니다.
확장 프로그램 스크린샷
Pint for GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
GitHub's personalisation options are a bit lacking, and staring at the same bland dark color scheme can make you wonder, what if there's more. Pint for GitHub resolves that by providing you control over the way GitHub looks like. Did I mention it's free and OSS? Features: - Complete control of personalisation of every element. - With the right settings, you can also achieve light theme too. - Quickly paint groups of colors with the Group Painter. - Quickly paint the entire site with the Update All button. - Individual control of every possible element (change the color of any individual element without affecting the rest) - Suggest colors that match the color you picked. - Custom CSS to modify each button to each div just the way you like it. - Free and Open-source and will always be. This project is not affiliated, associated, endorsed by, or in any way officially connected with GitHub, Inc. and Git, or any of its subsidiaries or its affiliates.
확장 프로그램 기본 정보
이름 | Pint for GitHub |
ID | mjhmdkcefcklflcmmokoahfdodcpeobg |
공식 URL | https://chromewebstore.google.com/detail/pint-for-github/mjhmdkcefcklflcmmokoahfdodcpeobg |
설명 | Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub. |
파일 크기 | 2.89 MB |
설치 횟수 | 31 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2022-08-09 |
출시 날짜 | 2022-01-12 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://fuwa.sh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/fuwaa/pint |
도움말 페이지 URL | https://github.com/fuwaa/pint/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Pint for GitHub", "version": "2.0.1", "icons": { "16": "pint-logo.png", "48": "pint-logo.png", "128": "pint-logo.png" }, "action": { "default_icon": { "16": "pint-logo.png", "24": "pint-logo.png", "32": "pint-logo.png" }, "default_title": "Pint for GitHub", "default_popup": "index.html" }, "description": "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.", "author": { "name": "Jariel Que", "url": "https:\/\/github.com\/fuwaa" }, "host_permissions": [ "https:\/\/*.github.com\/" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*.github.com\/*" ], "css": [ "pint-css.css" ], "js": [ "initial.js" ] }, { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "initial.js" ], "css": [ "unhide.css" ] }, { "run_at": "document_idle", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "initial.js" ] } ], "permissions": [ "storage", "scripting" ], "background": { "service_worker": "background.js" }, "options_page": "index.html" } |