Javadoc Search Frame

Javadoc incremental search for packages and classes.

Javadoc Search Frame란 무엇입니까?

Javadoc Search Frame은(는) StevenGBrown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Javadoc incremental search for packages and classes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Javadoc Search Frame 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When viewing Javadocs, this extension replaces the package and class frames with a single search frame that allows searching incrementally through all packages and classes at once.

Feature summary: https://github.com/StevenGBrown/javadoc-search-frame/wiki/Features

To have this extension apply to file:// URLs, configure it from the chrome://extensions/ page.

Also available for Mozilla Firefox:
https://greasyfork.org/en/scripts/3758-javadoc-search-frame                    

확장 프로그램 기본 정보

이름 Javadoc Search Frame Javadoc Search Frame
ID mfgkihmpcjjnijmkchojlbccbmhcdfcd
공식 URL https://chromewebstore.google.com/detail/javadoc-search-frame/mfgkihmpcjjnijmkchojlbccbmhcdfcd
설명 Javadoc incremental search for packages and classes.
파일 크기 39.18 KB
설치 횟수 2,242
현재 버전 1.7.0
최근 업데이트 2022-11-11
출시 날짜 2018-01-13
평점 4.80/5 총 49 개의 평점
개발자 StevenGBrown
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/StevenGBrown/javadoc-search-frame
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.7.0",
    "manifest_version": 3,
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "event-page.js"
    },
    "commands": {
        "focus-on-search-field": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Focus on the search field"
        },
        "clear-search-field": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "Clear the contents of the search field"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/allclasses-frame.html",
                "http:\/\/*\/*\/allclasses-frame.html",
                "https:\/\/*\/allclasses-frame.html",
                "https:\/\/*\/*\/allclasses-frame.html",
                "file:\/\/*\/allclasses-frame.html",
                "file:\/\/*\/*\/allclasses-frame.html",
                "http:\/\/*\/package-frame.html",
                "http:\/\/*\/*\/package-frame.html",
                "https:\/\/*\/package-frame.html",
                "https:\/\/*\/*\/package-frame.html",
                "file:\/\/*\/package-frame.html",
                "file:\/\/*\/*\/package-frame.html"
            ],
            "js": [
                "lib\/Messages.js",
                "lib\/Storage.js",
                "lib\/Option.js",
                "lib\/Frames.js",
                "lib\/OptionsPage.js",
                "lib\/HttpRequest.js",
                "lib\/common.js",
                "allclasses-frame.js"
            ],
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "88",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "options_page": "options.html",
    "offline_enabled": true,
    "permissions": [
        "scripting",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ]
}