pr-tree-viewer
PR의 변경된 파일들을 트리 구조로 볼 수 있도록 도와주는 크롬 익스텐션
Τι είναι το pr-tree-viewer;
Το pr-tree-viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Pewww, και η κύρια λειτουργία του είναι "PR의 변경된 파일들을 트리 구조로 볼 수 있도록 도와주는 크롬 익스텐션".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης pr-tree-viewer
Λήψη αρχείων επέκτασης pr-tree-viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The PR's 'Changed Files' show the contents of the changed files only in the form of a list, so it's difficult to understand the overall structure. This extension provides the ability to view changed files in a tree structure, opens and closes all of the files to help you check them more conveniently. Tips: You can adjust the size with the resize button on the bottom right! Make sure you hide GitHub's own file tree. *1.2.4 - Fix the overlapping issue with the GitHub's PR Tree. *1.2.2 - Fix the issue of failing to retrieve the names of files *1.2.1 - Fix style issue *1.2.0 - Fix the basic problem that extension does not work. - Fix the problem that extension does not work when you refresh with hash url for a specific changed file. PR의 Changed Files는 리스트 형태로만 변경된 파일들의 내용을 보여주기 때문에 전체적인 구조를 파악하기 어렵습니다. 해당 익스텐션은 변경된 파일들을 트리 구조로 볼 수 있는 기능을 제공하며, 파일들에 대한 모두 열고 닫는 기능을 제공하여 보다 편리하게 확인이 가능하도록 도와줍니다. 꿀팁: 우측 하단의 리사이즈 버튼으로 익스텐션의 크기를 조절할 수 있습니다! 사용 시 깃허브 자체의 PR Tree를 숨김 처리하는 것을 잊지 마세요! *1.2.4 - 깃허브 자체의 PR Tree와 겹치는 현상 해결 *1.2.2 - 파일들의 명칭을 불러오지 못하던 현상 해결 *1.2.1 - 스타일 이슈 해결 *1.2.0 - 기본적인 익스텐션 미노출 현상 해결 - 특정 파일에 대한 hash url로 새로고침 시 익스텐션 미노출 현상 해결
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | oohjmbbehcipaomlpikccfgncaknhenp |
Επίσημο URL | https://chrome.google.com/webstore/detail/pr-tree-viewer/oohjmbbehcipaomlpikccfgncaknhenp |
Περιγραφή | PR의 변경된 파일들을 트리 구조로 볼 수 있도록 도와주는 크롬 익스텐션 |
Μέγεθος Αρχείου | 300 KB |
Αριθμός Εγκαταστάσεων | 103 |
Τρέχουσα Έκδοση | 1.2.4 |
Τελευταία Ενημέρωση | 2022-07-05 |
Ημερομηνία Δημοσίευσης | 2021-02-22 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Pewww |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Pewww/pr-tree-viewer |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Pewww/pr-tree-viewer |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "pr-tree-viewer", "version": "1.2.4", "manifest_version": 2, "description": "PR\uc758 \ubcc0\uacbd\ub41c \ud30c\uc77c\ub4e4\uc744 \ud2b8\ub9ac \uad6c\uc870\ub85c \ubcfc \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \ud06c\ub86c \uc775\uc2a4\ud150\uc158", "permissions": [ "tabs", "activeTab", "https:\/\/*\/*", "http:\/\/*\/*" ], "icons": { "128": "logo.png" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/github.com\/*" ], "js": [ "index.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "*.woff2" ] } |