JIRA to OmniFocus

Adds a 'Send to OmniFocus' button to JIRA ticket pages.

什麼是JIRA to OmniFocus?

JIRA to OmniFocus是由prometheas開發的Chrome擴展程式,該擴展的主要功能是“Adds a 'Send to OmniFocus' button to JIRA ticket pages.”。

擴展截圖

screenshot

下載JIRA to OmniFocus擴展crx文件

下載JIRA to OmniFocus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension adds a big, lovely "Send to OmniFocus" button atop the right column of the JIRA ticket page.  Click that button to quickly send a JIRA ticket into OmniFocus.  The extension also supports Mail Drop, so you can send items to your OmniFocus Inbox even if you haven't got OmniFocus installed on this computer. (Yes, even from Linux or Windows.)

Use it to allocate today's work. Use it to remember to follow up on some ticket, even one that's not yours (let's face it: merely being a watcher isn't all that useful when you've got a mountain of things you're responsible for).

Please take a moment to rate it and provide a review, whether you love it or not.

Finally, I'd like to hear from folks using this extension, but I don't get notifications of comments posted to the extension page. I check in periodically, but I cannot respond to reviews that users post. So if you'd like to contact me more interactively, please do feel free to me a message on Twitter @prometheas.

ALSO: I'm working on an extensible successor to this extension, which I intend to be able to support multiple browsers and multiple task management apps. Reach out if that sounds interesting to you.                    

擴展基本資訊

名稱 JIRA to OmniFocus JIRA to OmniFocus
ID engmpfhepafobaopljohdkogmbbhcaeo
官方網址 https://chromewebstore.google.com/detail/jira-to-omnifocus/engmpfhepafobaopljohdkogmbbhcaeo
簡介 Adds a 'Send to OmniFocus' button to JIRA ticket pages.
檔案大小 297 KB
安裝次數 203
目前版本 1.2
更新時間 2020-08-07
上架時間 2016-09-23
評分 4.38/5 共 8 次評分
開發者 prometheas
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/prometheas/jira-2-omnifocus
說明頁面URL https://github.com/prometheas/jira-2-omnifocus/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA to OmniFocus",
    "description": "Adds a 'Send to OmniFocus' button to JIRA ticket pages.",
    "version": "1.2",
    "icons": {
        "256": "images\/omnifocus-256.png"
    },
    "permissions": [],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*",
                "*:\/\/*\/*\/browse\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/vendor\/zepto.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/events.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/omnifocus-32.png",
        "images\/omnifocus-64.png",
        "images\/omnifocus-256.png"
    ]
}