Octotree - GitHub code tree
GitHub on steroids
Octotree - GitHub code tree란 무엇입니까?
Octotree - GitHub code tree은(는) https://octotree.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitHub on steroids"입니다.
확장 프로그램 스크린샷
Octotree - GitHub code tree 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension that enhances GitHub code review and exploration. Features * Fast IDE-like code tree * Quick search in tree format * Bookmark repos, issues, PRs, files * Support GitHub themes * Support private repositories * High performance, working with repositories of any size PRO features * Multiple tabs * File icon themes * Code font settings * Quick PR navigation * Unlimited bookmarks * Pull request code review * Sidebar docking position * Multiple GitHub accounts * Support GitHub Enterprise Learn more: https://www.octotree.io/features NO BS POLICY: Octotree doesn't track you or share/care about your data at all. GitHub tokens are only needed when you want to access private repositories or exceed GitHub API rate limit. Octotree stores tokens in your browser storage and only uses them to authenticate with GitHub.
확장 프로그램 기본 정보
이름 | Octotree - GitHub code tree |
ID | bkhaagjahfmjljalopjnoealnfndnagc |
공식 URL | https://chromewebstore.google.com/detail/octotree-github-code-tree/bkhaagjahfmjljalopjnoealnfndnagc |
설명 | GitHub on steroids |
파일 크기 | 3.4 MB |
설치 횟수 | 355,738 |
현재 버전 | 7.11.2 |
최근 업데이트 | 2024-01-04 |
출시 날짜 | 2020-07-01 |
평점 | 4.86/5 총 1143 개의 평점 |
개발자 | https://octotree.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.octotree.io/ |
도움말 페이지 URL | https://www.octotree.io/contact |
개인정보 보호 정책 페이지 URL | https://www.octotree.io/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Octotree - GitHub code tree", "version": "7.11.2", "description": "GitHub on steroids", "homepage_url": "https:\/\/www.octotree.io", "author": "Team Octotree", "manifest_version": 2, "minimum_chrome_version": "60", "applications": { "gecko": { "id": "jid1-Om7eJGwA1U8Akg@jetpack", "strict_min_version": "55.0" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "browser_style": true }, "permissions": [ "https:\/\/api.github.com\/*", "https:\/\/www.octotree.io\/*", "storage", "contextMenus", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "*.woff2", "*.png", "*.gif", "*.svg" ], "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "browser-polyfill.js", "content.js" ], "css": [ "content.css" ] } ] } |