QFind

Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc.

QFind란 무엇입니까?

QFind은(는) that Michael Curry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

QFind 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Find elusive tabs quickly and easily by typing a text string. Open found tabs by clicking on the matching item in the results list.  

If you keep many windows and tabs open, I think you'll like this extension.

Other features:

* Optional persistent pop-out window allows rapid navigation through found items.

* Copy tab titles and URLs to clipboard in Markdown, WikiText, or CSV format

* Quick-access Omnibox commands: find, group, consolidate.

See https://github.com/inactivist/chrome-qfind/wiki/Change-Log for the official change history.                    

확장 프로그램 기본 정보

이름 QFind QFind
ID fhligoaannmlpdmgapklcocaoafioihh
공식 URL https://chromewebstore.google.com/detail/qfind/fhligoaannmlpdmgapklcocaoafioihh
설명 Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc.
파일 크기 395 KB
설치 횟수 135
현재 버전 0.0.0.25
최근 업데이트 2013-11-22
출시 날짜 2013-11-22
평점 5.00/5 총 8 개의 평점
개발자 that Michael Curry
결제 유형 free
확장 프로그램 웹 사이트 http://inactivist.github.io/chrome-qfind
도움말 페이지 URL https://github.com/inactivist/chrome-qfind/wiki/QFind-FAQ
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QFind",
    "version": "0.0.0.25",
    "manifest_version": 2,
    "description": "Find open tabs and organize them.  Search for text, see list of matching tabs, open found tab, group tabs, etc.",
    "homepage_url": "http:\/\/inactivist.github.io\/chrome-qfind\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "omnibox": {
        "keyword": "qf"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "QFind\rFind text in open tabs",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "",
        "clipboardWrite",
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/misc\/underscore-min.js",
                "src\/makestruct.js",
                "src\/ExcerptEntry.js",
                "src\/MatchEntry.js",
                "src\/QFUtil.js",
                "src\/ResultsModel.js",
                "src\/MatchMaker.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com\/ https:\/\/ssl.google-analytics.com; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            }
        }
    }
}