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 là gì?

Jira External Links Opener là một tiện ích mở rộng Chrome được phát triển bởi Pendexgabo, và tính năng chính của nó là "Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.".

Tải xuống tệp CRX của tiện ích mở rộng Jira External Links Opener

Tải xuống các tệp mở rộng Jira External Links Opener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jira External Links Opener Jira External Links Opener
ID lkgfimolfmjbkmjnomiggkcojphppcik
URL Chính Thức https://chromewebstore.google.com/detail/jira-external-links-opene/lkgfimolfmjbkmjnomiggkcojphppcik
Mô tả Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.
Kích Thước Tệp 40.06 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2016-12-19
Ngày Phát Hành 2016-12-19
Nhà Phát Triển Pendexgabo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}