Friendly GitHub
Makes GitHub a better Social Network
Friendly GitHub란 무엇입니까?
Friendly GitHub은(는) hermanstarikov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes GitHub a better Social Network"입니다.
확장 프로그램 스크린샷
Friendly GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Whether we like it or not, GitHub is de-facto the Social Network for programmers. Let's make it less anti-social.
확장 프로그램 기본 정보
이름 | Friendly GitHub |
ID | phnhnfjginnlmbjlcdnjoochcceapfjb |
공식 URL | https://chromewebstore.google.com/detail/friendly-github/phnhnfjginnlmbjlcdnjoochcceapfjb |
설명 | Makes GitHub a better Social Network |
파일 크기 | 44.63 KB |
설치 횟수 | 111 |
현재 버전 | 18.9.13.2209 |
최근 업데이트 | 2018-09-13 |
출시 날짜 | 2018-09-13 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | hermanstarikov |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Hermanya/friendly-github |
도움말 페이지 URL | https://github.com/Hermanya/friendly-github/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Friendly GitHub", "short_name": "FGH", "version": "18.9.13.2209", "description": "Makes GitHub a better Social Network", "homepage_url": "https:\/\/github.com\/hermanya\/friendly-github", "manifest_version": 2, "minimum_chrome_version": "58", "applications": { "gecko": { "id": "{073711a2-ea6d-49f2-98b6-0d7ea340c06f}", "strict_min_version": "55.0" } }, "permissions": [ "storage", "contextMenus", "activeTab", "https:\/\/api.github.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "options.html", "browser_style": true }, "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon.png" }, "options_ui": { "chrome_style": true, "page": "options.html" }, "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "content.css" ], "js": [ "browser-polyfill.min.js", "content.js" ] } ] } |