Joplin Search Integration

When using search, related Joplin notes are also displayed in the search results.

Joplin Search Integration란 무엇입니까?

Joplin Search Integration은(는) rxliuli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When using search, related Joplin notes are also displayed in the search results."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Joplin Search Integration 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Introduction

When using web search, related Joplin notes are also displayed in the search results.

## FAQ

### What does token/port refer to and where can I find it?

You can usually see it in **Tools > Options > Web Clipper**

### No search results in Brave browser

In fact, Brave will block resources from other domains by default, so you can
turn it off on the Google search site.

## Contribute

If you want to add new search engine support, you can raise an issue, or fork it
and then modify it to mention PR (very simple)

1. in manifest.json add the url of matching search engine
2. implement BaseSearchEngineAdapter interface                    

확장 프로그램 기본 정보

이름 Joplin Search Integration Joplin Search Integration
ID mcjkdcifkhjenpfjacnbhpdcnjknjkhj
공식 URL https://chromewebstore.google.com/detail/joplin-search-integration/mcjkdcifkhjenpfjacnbhpdcnjknjkhj
설명 When using search, related Joplin notes are also displayed in the search results.
파일 크기 221 KB
설치 횟수 738
현재 버전 0.6.4
최근 업데이트 2024-02-17
출시 날짜 2021-03-08
평점 4.75/5 총 8 개의 평점
개발자 rxliuli
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rxliuli/joplin-utils/tree/master/packages/joplin-search-integration
도움말 페이지 URL https://github.com/rxliuli/joplin-utils/issues
개인정보 보호 정책 페이지 URL https://joplin-utils.rxliuli.com/joplin-search-integration/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Joplin Search Integration",
    "version": "0.6.4",
    "description": "When using search, related Joplin notes are also displayed in the search results.",
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/main.tsx-loader-Bt0krIj0.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/localhost:27583\/*",
        "http:\/\/localhost:41184\/*"
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "src\/assets\/16.png",
        "32": "src\/assets\/32.png",
        "48": "src\/assets\/48.png",
        "128": "src\/assets\/128.png"
    },
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/browser-polyfill-CKCvdr-s.js",
                "assets\/loading-BDuD4HP7.js",
                "assets\/trim-BoNFLr8p.js",
                "assets\/main.tsx-CB0YgE_T.js"
            ],
            "use_dynamic_url": true
        }
    ]
}