Joplin Search Integration

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

Joplin Search Integration là gì?

Joplin Search Integration là một tiện ích mở rộng Chrome được phát triển bởi rxliuli, và tính năng chính của nó là "When using search, related Joplin notes are also displayed in the search results.".

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

screenshot
screenshot

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

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

                        ## 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                    

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

Tên Joplin Search Integration Joplin Search Integration
ID mcjkdcifkhjenpfjacnbhpdcnjknjkhj
URL Chính Thức https://chromewebstore.google.com/detail/joplin-search-integration/mcjkdcifkhjenpfjacnbhpdcnjknjkhj
Mô tả When using search, related Joplin notes are also displayed in the search results.
Kích Thước Tệp 221 KB
Số Lần Cài Đặt 738
Phiên Bản Hiện Tại 0.6.4
Cập Nhật Lần Cuối 2024-02-17
Ngày Phát Hành 2021-03-08
Đánh Giá 4.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển rxliuli
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rxliuli/joplin-utils/tree/master/packages/joplin-search-integration
URL Trang Trợ Giúp https://github.com/rxliuli/joplin-utils/issues
URL Trang Chính Sách Bảo Mật https://joplin-utils.rxliuli.com/joplin-search-integration/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}