OctoTicket

Add asana ticket numbers on Ctrl-Space

OctoTicketคืออะไร?

OctoTicket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Drebot และคุณลักษณะหลักของมันคือ "Add asana ticket numbers on Ctrl-Space"

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

screenshot

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

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

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

                        This extension will allow you to generate asana ticket numbers. You can do so by configuring your team and the prefix in the settings. Asana does not currently have this logic built in.

When writing an asana ticket name description, press Ctrl-Space to generate a ticket number with your prefix.

The source code is available here:
https://github.com/Dotrar/Asana-Ticket-Generator                    

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

ชื่อ OctoTicket OctoTicket
ID dejmonfcadndjgfgkemabednodepjgni
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/octoticket/dejmonfcadndjgfgkemabednodepjgni
คำอธิบาย Add asana ticket numbers on Ctrl-Space
ขนาดไฟล์ 65.98 KB
จำนวนการติดตั้ง 69
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-05-08
วันที่เผยแพร่ 2022-02-02
ผู้พัฒนา Drebot
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Dotrar/Asana-Ticket-Generator
URL หน้าช่วยเหลือ https://github.com/Dotrar/Asana-Ticket-Generator/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoTicket",
    "description": "Add asana ticket numbers on Ctrl-Space",
    "version": "1.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "js": [
                "asana-ticket.js"
            ]
        }
    ]
}