Planning Poker Auto Picker (for PlanITpoker)

For those times where you have no idea how many points to assign anything and mark everything as '?'; might as well automate it!

Planning Poker Auto Picker (for PlanITpoker)คืออะไร?

Planning Poker Auto Picker (for PlanITpoker) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย WiL และคุณลักษณะหลักของมันคือ "For those times where you have no idea how many points to assign anything and mark everything as '?'; might as well automate it!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Planning Poker Auto Picker (for PlanITpoker)

ดาวน์โหลดไฟล์ส่วนขยาย Planning Poker Auto Picker (for PlanITpoker) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Ever find yourself in a sprint planning session or scrum meeting with no idea how many points any of the tasks are worth? Maybe you're the newbie on the team or perhaps you just don't want to pay attention; either way, you just find yourself giving every task a score of'?'. 

Reviewing 50 tasks? That's 50 manual clicks that could have been spent on checking your schedule for when the meeting is supposed to end, and a lot of attention that you have to pay just to ensure that you're not always the last person that everyone is waiting on to vote. So why not just automate the clicking? By default, this extension will automatically pick '?' for you as soon as voting starts.

Want to automatically pick another card instead of '?'... for whatever reason? It can do that too.

Want to automatically pick a random card? I'm not really sure why you'd really need that functionality, but if you really desire an inefficient RNG, then this extension be that inefficient RNG for you too.

The extension has a couple of other (useless... but also spicy?) tricks up its sleeve, so stop wasting your time on manually clicking '?'; have this extension do it for you so that you can pay even less attention to your meeting that you don't understand and are barely participating in anyways.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Planning Poker Auto Picker (for PlanITpoker) Planning Poker Auto Picker (for PlanITpoker)
ID gmhheeneidbiemdenkaiplacghjebpol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/planning-poker-auto-picke/gmhheeneidbiemdenkaiplacghjebpol
คำอธิบาย For those times where you have no idea how many points to assign anything and mark everything as '?'; might as well automate it!
ขนาดไฟล์ 24.6 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2019-04-18
วันที่เผยแพร่ 2019-04-17
ผู้พัฒนา WiL
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "WiL",
    "name": "Planning Poker Auto Picker (for PlanITpoker)",
    "short_name": "autoPoker",
    "version": "1.2.1",
    "options_page": "options.html",
    "description": "For those times where you have no idea how many points to assign anything and mark everything as '?'; might as well automate it!",
    "icons": {
        "128": "Assets\/questionEnabledIcon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "Assets\/questionEnabledIcon.png",
        "default_title": "Click to pause auto-clicking"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.planitpoker.com\/*"
            ],
            "all_frames": true,
            "js": [
                "poker.js"
            ]
        }
    ]
}