JIRA to OmniFocus

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

JIRA to OmniFocus क्या है?

JIRA to OmniFocus prometheas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a 'Send to OmniFocus' button to JIRA ticket pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JIRA to OmniFocus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}