Jira Link and Search

Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.

Jira Link and Search là gì?

Jira Link and Search là một tiện ích mở rộng Chrome được phát triển bởi Nick Orlando, và tính năng chính của nó là "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jira Link and Search

Tải xuống các tệp mở rộng Jira Link and Search 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

                        This extension allows you to select any text in Chrome, and right-click to search for the selected text within an install of Atlassian JIRA.

Recent Changes:
0.2: NEW - This extension will automatically highlight Jira tickets (in the format ABC-123) and turn them directly into hyperlinks!

This extension is Open-Source (MIT License). Source code is available on GitHub.

Please submit any issues (and Pull Requests) via GitHub.                    

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

Tên Jira Link and Search Jira Link and Search
ID jlpbojfbbmodkbjhemkcmkhhlkpijhbi
URL Chính Thức https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Mô tả Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Kích Thước Tệp 58.29 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 0.2.4
Cập Nhật Lần Cuối 2018-01-28
Ngày Phát Hành 2018-01-28
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Nick Orlando
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/NickMOrlando/JiraSearchTool
URL Trang Trợ Giúp https://github.com/NickMOrlando/JiraSearchTool/issues
URL Trang Chính Sách Bảo Mật https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Link and Search",
    "short_name": "Jira Link-Search",
    "description": "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.",
    "version": "0.2.4",
    "minimum_chrome_version": "38",
    "permissions": [
        "contextMenus",
        "tabs",
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "assets\/search.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "highlight.js",
                "activate-ga.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "ga.js",
        "background.html"
    ]
}