Jira External Links Opener

Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.

Jira External Links Opener क्या है?

Jira External Links Opener Pendexgabo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation."।

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

crx प्रारूप में Jira External Links Opener एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Minimal Extension that help Jira Cloud users to have external links opened another tab to prevent loosing the current Jira navigation.

Versions

0.0.3
  - skip urls in code blocks

0.0.2
  - on document ready event.

0.0.1
 - just the basics.


Development

Please feel free to download the code from https://github.com/pendexgabo/jira-external-links and post any bug or feature request over there.                    

एक्सटेंशन की मूल जानकारी

नाम Jira External Links Opener Jira External Links Opener
ID lkgfimolfmjbkmjnomiggkcojphppcik
आधिकारिक URL https://chromewebstore.google.com/detail/jira-external-links-opene/lkgfimolfmjbkmjnomiggkcojphppcik
विवरण Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.
फ़ाइल का आकार 40.06 KB
स्थापना संख्या 17
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2016-12-19
प्रकाशन तिथि 2016-12-19
डेवलपर Pendexgabo
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira External Links Opener",
    "version": "0.0.3",
    "description": "Minimal Extension that help Jira Cloud users to have  external links opened another tab to don't loose the current Jira navigation.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/arrive.min.js",
                "js\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.atlassian.net\/*"
    ],
    "manifest_version": 2
}