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 क्या है?
Kagi Search for Chrome https://kagi.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Kagi Search for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Kagi Search for Chrome |
ID | cdglnehniifkbagbbombnjghhcihifij |
आधिकारिक URL | https://chromewebstore.google.com/detail/kagi-search-for-chrome/cdglnehniifkbagbbombnjghhcihifij |
विवरण | A simple extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows |
फ़ाइल का आकार | 34.56 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 0.6.0 |
अंतिम अपडेट | 2024-02-13 |
प्रकाशन तिथि | 2022-05-02 |
रेटिंग | 4.50/5 कुल 22 रेटिंग्स |
डेवलपर | https://kagi.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://kagi.com |
सहायता पृष्ठ URL | https://kagifeedback.org |
गोपनीयता नीति पृष्ठ URL | https://kagi.com/privacy |
समर्थित भाषाएँ | 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" } } } |