Pivotal Tracker Styler

Pivotal Tracker Styler enhances the look and feel of Pivotal Tracker, making it more enjoyable and visually appealing.

Pivotal Tracker Styler란 무엇입니까?

Pivotal Tracker Styler은(는) https://farzanyaz.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pivotal Tracker Styler enhances the look and feel of Pivotal Tracker, making it more enjoyable and visually appealing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Pivotal Tracker Styler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pivotal Tracker Styler is a user-friendly Chrome extension designed to transform the appearance of Pivotal Tracker, making it more visually appealing and enjoyable to use. Recognizing that a well-designed dashboard can positively impact productivity and overall user experience, this extension offers an array of customizable features that allow users to tailor the look of their Pivotal Tracker projects (and workspaces).

Key features include:

- Enhanced background and text colors for better text readability
- Color-coded ticket-owner labels for easy identification
- Expanded ticket details and comments section
- Better inline code and code block styling with line numbers
- Streamlined ticket actions for efficiency
- Optional SCRUM ticket status displayed as gray text (excluding unstarted tickets)
- Optional removal of REJECT button from ticket preview - still available in the expanded view
- Optional removal of ticket selector button for a cleaner interface (re-activatable during ticket organization)
- Optional feature to gray out unstarted tickets, promoting the completion of in-progress tasks
- Optional feature to discretely display how many days remain until the end of each sprint

By installing Pivotal Tracker Styler, users can elevate their project management experience and increase their efficiency while working with Pivotal Tracker. Say goodbye to the monotonous interface and embrace a visually appealing, customized environment that boosts your spirits and improves your workflow.                    

확장 프로그램 기본 정보

이름 Pivotal Tracker Styler Pivotal Tracker Styler
ID mcbdmjomdgjhpefpjocmpfgbabbddlpl
공식 URL https://chromewebstore.google.com/detail/pivotal-tracker-styler/mcbdmjomdgjhpefpjocmpfgbabbddlpl
설명 Pivotal Tracker Styler enhances the look and feel of Pivotal Tracker, making it more enjoyable and visually appealing.
파일 크기 62.34 KB
설치 횟수 58
현재 버전 1.21
최근 업데이트 2023-08-14
출시 날짜 2023-04-14
평점 5.00/5 총 8 개의 평점
개발자 https://farzanyaz.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/farzany/pivotal-tracker-styler
개인정보 보호 정책 페이지 URL https://farzanyaz.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pivotal Tracker Styler",
    "version": "1.21",
    "description": "Pivotal Tracker Styler enhances the look and feel of Pivotal Tracker, making it more enjoyable and visually appealing.",
    "icons": {
        "32": "icons\/icon-32x32.png",
        "128": "icons\/icon-128x128.png",
        "192": "icons\/icon-192x192.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icons\/icon-32x32.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.pivotaltracker.com\/n\/projects\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.pivotaltracker.com\/n\/workspaces\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}