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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://farzanyaz.com และคุณลักษณะหลักของมันคือ "Pivotal Tracker Styler enhances the look and feel of Pivotal Tracker, making it more enjoyable and visually appealing."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pivotal Tracker Styler

ดาวน์โหลดไฟล์ส่วนขยาย Pivotal Tracker Styler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}