Scrum for Zoho

Adds Scrum to your Zoho

Scrum for Zohoคืออะไร?

Scrum for Zoho เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Amazing Mixed Media Minds และคุณลักษณะหลักของมันคือ "Adds Scrum to your Zoho"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scrum for Zoho

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

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

                        Adds Estimated points to your Zoho Kanban board

With Scrum for Zoho, working with the Scrum workflow in Zoho has never been easier!
When working with User Stories or bugs within the bugtracker, you can add story points or estimated hours to your tickets. 
Each column will get it's own point total and a grand total of all points in the Kanban view will be displayed.

Getting started
- To add an estimate to a card, first click a card to open it
- Click the title of the card to "edit" the title.
- Once the Card title is in edit-mode, you will able to see two rows with figures. 
  The top row contains numbers you can choose from (fibonacci sequence).
  The bottom row can be used for hours. 
  Click one of the buttons to set that as the estimate.
- It is also possible to enter points or hours manually by inserting a code in the title.
  Example if you want to add three story points, simply add (3) to the title.
  Example if you want to add three hours, add (3h) to the title.
  Estimated hours and points can be used simultaneously

For this extension the following applications are required:
- Zoho projects
- Zoho Bugtracker (included in projects)

Changelog:
2.0:
- Possibility to not only add story points to your stories, but also specific hours.
- Updated for the new Zoho Projects UI.

2.1:
- Removed unnecessary permissions.

2.3:
- Support for the new Zoho Kanban board layout.

2.4:
- Fixed issue with continuous adding of points and hours due to layout change of Zoho Kanban board.

Todo:
Include options in the extension
- option to turn off hours or points view

==============================


Scrum for Zoho was created by Amazing Mixed Media Minds | [email protected]                    

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

ชื่อ Scrum for Zoho Scrum for Zoho
ID ailccpnoabgeifkaekepljilaeldpokl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scrum-for-zoho/ailccpnoabgeifkaekepljilaeldpokl
คำอธิบาย Adds Scrum to your Zoho
ขนาดไฟล์ 122 KB
จำนวนการติดตั้ง 110
เวอร์ชันปัจจุบัน 2.4
อัปเดตครั้งล่าสุด 2018-01-05
วันที่เผยแพร่ 2018-01-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Amazing Mixed Media Minds
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.amazing.nl/
URL หน้าช่วยเหลือ https://www.amazing.nl/wp-content/uploads/2017/03/Chrome-extensions-for-Zoho-UK-Amazing.pdf
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrum for Zoho",
    "version": "2.4",
    "description": "Adds Scrum to your Zoho",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/projects.zoho.com\/portal\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "fancybox\/jquery.fancybox.js",
                "zohoscrum.js"
            ],
            "css": [
                "fancybox\/jquery.fancybox.css",
                "zohoscrum.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "zoho-scrum-icon_16x16.png",
            "24": "zoho-scrum-icon_24x24.png",
            "32": "zoho-scrum-icon_32x32.png"
        }
    },
    "icons": {
        "16": "zoho-scrum-icon_16x16.png",
        "48": "zoho-scrum-icon_48x48.png",
        "128": "zoho-scrum-icon.png"
    },
    "web_accessible_resources": [
        "images\/storypoints-icon.png",
        "images\/hours-icon.png",
        "images\/hours-icon-white.png",
        "images\/points-done.png",
        "images\/burndown_for_zoho_icon_12x12.png",
        "images\/burndown_for_zoho_icon_18x18.png",
        "images\/zoho-scrum-icon_12x12.png",
        "images\/zoho-scrum-icon_18x18.png",
        "fancybox\/blank.gif",
        "fancybox\/fancybox_loading.gif",
        "fancybox\/[email protected]",
        "fancybox\/fancybox_overlay.png",
        "fancybox\/fancybox_sprite.png",
        "fancybox\/[email protected]"
    ],
    "permissions": [
        "storage"
    ]
}