OctoTicket

Add asana ticket numbers on Ctrl-Space

什麼是OctoTicket?

OctoTicket是由Drebot開發的Chrome擴展程式,該擴展的主要功能是“Add asana ticket numbers on Ctrl-Space”。

擴展截圖

screenshot

下載OctoTicket擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}