Word Khoj
Search a Hindi website using English text
Word Khojとは何ですか?
Word KhojはFabPicによって開発されたChromeの拡張機能で、その主な機能は「Search a Hindi website using English text」です。
拡張機能のスクリーンショット
Word Khoj拡張機能のCRXファイルをダウンロード
Word Khoj拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Have you ever been in a situation where you are reading a hindi article, or news, or lyrics or literature online and you wanted to find/locate specific hindi words on the page? And you tried Google page translate but suddenly those hindi words get replaced by English words which you never understood? Even Ctrl+F didn’t come to the rescue as you can’t type a hindi word from your English keyboard? Word Khoj is an extension which helps you solve all these troubles in just 2 steps - 1) Open the extension & type the word/phrase to be searched in hinglish 2) Scroll through the highlighted results on the page Hindi searches can’t be easier! Created with love by Lavesh & Shadab!(https://twitter.com/Shadabshs)
拡張機能の基本情報
名前 | Word Khoj |
ID | bdocoepjnibclhlibcccnjpgeknhdlah |
公式URL | https://chromewebstore.google.com/detail/word-khoj/bdocoepjnibclhlibcccnjpgeknhdlah |
説明 | Search a Hindi website using English text |
ファイルサイズ | 20.21 KB |
インストール数 | 22 |
現在のバージョン | 1.2.3 |
最終更新日 | 2023-10-16 |
公開日 | 2023-03-05 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | FabPic |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://www.fabpic.app/privacy |
対応言語 | hi |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Word Khoj", "version": "1.2.3", "description": "Search a Hindi website using English text", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "scripting", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "mark.css" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+H", "mac": "MacCtrl+Command+H" } } } } |