Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Make GitHub Pages Full Width란 무엇입니까?
Make GitHub Pages Full Width은(는) https://www.danskingdom.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser."입니다.
확장 프로그램 스크린샷
Make GitHub Pages Full Width 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of your browser, rather than maxing out at the default ~900 pixels. This makes viewing code on GitHub much easier, as most developers have widescreen monitors. If the page fails to expand, simply refresh the page.
확장 프로그램 기본 정보
이름 | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
공식 URL | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
설명 | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
파일 크기 | 5.43 KB |
설치 횟수 | 123 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-05-27 |
출시 날짜 | 2014-05-27 |
평점 | 2.75/5 총 4 개의 평점 |
개발자 | https://www.danskingdom.com |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make GitHub Pages Full Width", "description": "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.", "version": "1.0", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files*", "https:\/\/github.com\/*\/commit\/*", "https:\/\/github.com\/*\/blob\/*" ], "js": [ "MakeGitHubPullRequestCommitAndBlobPagesFullWidth.user.js" ] } ] } |