Kagi Search for Chrome
A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows
Kagi Search for Chrome là gì?
Kagi Search for Chrome là một tiện ích mở rộng Chrome được phát triển bởi https://kagi.com, và tính năng chính của nó là "A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kagi Search for Chrome
Tải xuống các tệp mở rộng Kagi Search for Chrome 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
With Kagi Search for Chrome you can use Kagi search in private window without the need to log in (after adding the private session link in extension settings). Kagi Search extension also enables instant summary of your current page using Kagi's Universal Summarizer. Kagi Search for Chrome is full open source and available at: https://github.com/kagisearch/browser_extensions
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Kagi Search for Chrome |
ID | cdglnehniifkbagbbombnjghhcihifij |
URL Chính Thức | https://chromewebstore.google.com/detail/kagi-search-for-chrome/cdglnehniifkbagbbombnjghhcihifij |
Mô tả | A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows |
Kích Thước Tệp | 34.56 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.6.0 |
Cập Nhật Lần Cuối | 2024-02-13 |
Ngày Phát Hành | 2022-05-02 |
Đánh Giá | 4.50/5 Tổng số 22 Đánh Giá |
Nhà Phát Triển | https://kagi.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://kagi.com |
URL Trang Trợ Giúp | https://kagifeedback.org |
URL Trang Chính Sách Bảo Mật | https://kagi.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Kagi Search for Chrome", "version": "0.6.0", "description": "A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows", "background": { "service_worker": "src\/background.js", "type": "module" }, "icons": { "16": "icons\/icon_16px.png", "32": "icons\/icon_32px.png", "48": "icons\/favicon-48.png", "180": "icons\/icon_180px.png" }, "action": { "default_icon": "icons\/icon_32px.png", "default_title": "Kagi Search", "default_popup": "src\/popup.html" }, "permissions": [ "cookies", "declarativeNetRequestWithHostAccess", "webRequest", "storage", "contextMenus" ], "optional_permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/kagi.com\/*" ], "chrome_settings_overrides": { "search_provider": { "name": "Kagi", "search_url": "https:\/\/kagi.com\/search?q={searchTerms}", "favicon_url": "https:\/\/assets.kagi.com\/v2\/favicon-32x32.png", "keyword": "@kagi", "is_default": true, "suggest_url": "https:\/\/kagi.com\/api\/autosuggest?q={searchTerms}", "encoding": "UTF-8" } }, "incognito": "spanning", "commands": { "_execute_action": { "description": "Open the Kagi extension" }, "summarize-active-page": { "description": "Summarize the currently active page" } } } |