Jira 칸반의 스크린샷을 찍는 방법
4217 단어 clomejirascreenshot
그러나 Jira의 칸반 화면은 본문 스크롤을 비활성화합니다. 또한 칸반 보드 요소에 스크롤 막대가 있습니다. 웹 페이지의 전체 화면 스냅샷을 피합니다.
나만의 크롬 확장 프로그램 만들기
크롬 개발자 모드를 통해 CSS를 편집하고 사용하지 않는 스크롤 막대를 제거하고 페이지의 스크롤 막대를 다시 표시하여 Jira 칸반 페이지를 조정하는 데 성공했습니다. 하지만 스크린샷을 찍기 전에 매일 조정하는 것은 고통스러운 일입니다. 더 쉽게 만드는 방법? 이 문서https://qiita.com/dhomma/items/bb49c9f6b66ee936ff5c에서 해결책을 찾았습니다. 이 문서는 특정 사이트의 CSS를 편집할 목적으로 크롬 확장 프로그램을 만드는 방법에 관한 것입니다. 이거 야!
디렉토리 및 파일 만들기
$ mkdir your_directory
$ cd your_directory
$ touch manifest.json
$ touch style.css
마지막으로 파일은 아래와 같습니다.
your_directory
├── manifest.json
└── style.css
매니페스트.json 편집
매니페스트.json
{
"name": "www.example.com css",
"version": "1.0",
"description": "CSS for www.example.com",
"content_scripts": [
{
"matches": ["http://www.example.com/*"],
"css": ["style.css"]
}
],
"manifest_version": 2
}
www.example.com
를 jira의 것으로 수정하십시오.
style.css 편집
스타일.css
body#jira {
overflow: scroll!important;
overflow-x: scroll!important;
overflow-y: scroll!important;
}
#ghx-detail-contents, #ghx-pool {
height: fit-content!important;
}
확장 프로그램 설치
$ mkdir your_directory
$ cd your_directory
$ touch manifest.json
$ touch style.css
your_directory
├── manifest.json
└── style.css
{
"name": "www.example.com css",
"version": "1.0",
"description": "CSS for www.example.com",
"content_scripts": [
{
"matches": ["http://www.example.com/*"],
"css": ["style.css"]
}
],
"manifest_version": 2
}
body#jira {
overflow: scroll!important;
overflow-x: scroll!important;
overflow-y: scroll!important;
}
#ghx-detail-contents, #ghx-pool {
height: fit-content!important;
}
Developer mode
. Load unpacked
을 클릭합니다. your_directory
를 선택합니다. 완성된
Jira 칸반 페이지를 새로 고쳐야 합니다. 즐기다!
Reference
이 문제에 관하여(Jira 칸반의 스크린샷을 찍는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/callas1900/how-to-take-a-screenshot-of-jira-kanban-1hn1
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Jira 칸반의 스크린샷을 찍는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/callas1900/how-to-take-a-screenshot-of-jira-kanban-1hn1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)