Confluence Quick Search

Quickly search team knowledge with the press of a button

Confluence Quick Search란 무엇입니까?

Confluence Quick Search은(는) anth0d에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly search team knowledge with the press of a button"입니다.

확장 프로그램 스크린샷

screenshot

Confluence Quick Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Free and open-source add-on to speed up your ability to find information in Confluence. Open a search box using a keyboard shortcut (assigned in chrome://extensions/settings) or type "con " in your browser's omnibox to launch a search in a new tab. No ads!                    

확장 프로그램 기본 정보

이름 Confluence Quick Search Confluence Quick Search
ID gimcmmlpmjffkpbomagapjhdfbbeldfk
공식 URL https://chromewebstore.google.com/detail/confluence-quick-search/gimcmmlpmjffkpbomagapjhdfbbeldfk
설명 Quickly search team knowledge with the press of a button
파일 크기 88.69 KB
설치 횟수 5,010
현재 버전 2.0.1
최근 업데이트 2024-02-15
출시 날짜 2019-11-12
평점 4.36/5 총 11 개의 평점
개발자 anth0d
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/anth0d/confluence-quick-search/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Confluence Quick Search",
    "short_name": "confluenceqs",
    "version": "2.0.1",
    "description": "Quickly search team knowledge with the press of a button",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "images\/connie-16.png",
            "32": "images\/connie-32.png",
            "48": "images\/connie-48.png",
            "128": "images\/connie-128.png"
        },
        "default_popup": "action.html",
        "default_title": "Search Confluence"
    },
    "commands": {
        "_execute_action": {
            "description": "Open Confluence Quick Search",
            "suggested_key": {
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+K",
                "chromeos": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+K"
            },
            "global": true
        }
    },
    "icons": {
        "16": "images\/connie-16.png",
        "32": "images\/connie-32.png",
        "48": "images\/connie-48.png",
        "128": "images\/connie-128.png"
    },
    "omnibox": {
        "keyword": "con"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "minimum_chrome_version": "88",
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ]
}