Select Search
Select -> Search / Translate / Go to link
Select Search क्या है?
Select Search xuqingfeng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select -> Search / Translate / Go to link"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Select Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In macOS / Windows: ⌘/+ G - search selected text with different search engine( Google, Bing, Sogou ... ) ⌘/ + E - translate selected text ⌘/ + B - jump to selected link Note: shortcuts are customizable in extension's Options page
एक्सटेंशन की मूल जानकारी
नाम | Select Search |
ID | hlnpaciomjjnpmbjedfmlnkhogngmleh |
आधिकारिक URL | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh |
विवरण | Select -> Search / Translate / Go to link |
फ़ाइल का आकार | 2.21 MB |
स्थापना संख्या | 13 |
वर्तमान संस्करण | 3.2.0 |
अंतिम अपडेट | 2023-11-01 |
प्रकाशन तिथि | 2016-06-22 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | xuqingfeng |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/xuqingfeng/Select-Search |
समर्थित भाषाएँ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Select Search", "version": "3.2.0", "description": "Select -> Search \/ Translate \/ Go to link", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "options_page": "options.html", "default_locale": "en", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_start", "all_frames": true } ] } |