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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}