All Projects → Wscats → Search Online

Wscats / Search Online

🔍A simple extension for VSCode to search online easily using search engine.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Search Online

Search Ui
🔍 A set of UI components to build a fully customized search!
Stars: ✭ 24 (-79.13%)
Mutual labels:  search, search-engine
Opensse
Open Sketch Search Engine- 3D object retrieval based on sketch image as input
Stars: ✭ 883 (+667.83%)
Mutual labels:  search, search-engine
Blast
Blast is a full text search and indexing server, written in Go, built on top of Bleve.
Stars: ✭ 934 (+712.17%)
Mutual labels:  search, search-engine
Search cop
Search engine like fulltext query support for ActiveRecord
Stars: ✭ 660 (+473.91%)
Mutual labels:  search, search-engine
Searx
Privacy-respecting metasearch engine
Stars: ✭ 10,074 (+8660%)
Mutual labels:  search, search-engine
Riot
Go Open Source, Distributed, Simple and efficient Search Engine; Warning: This is V1 and beta version, because of big memory consume, and the V2 will be rewrite all code.
Stars: ✭ 6,025 (+5139.13%)
Mutual labels:  search, search-engine
Flexsearch
Next-Generation full text search library for Browser and Node.js
Stars: ✭ 8,108 (+6950.43%)
Mutual labels:  search, search-engine
Filemasta
A search application to explore, discover and share online files
Stars: ✭ 571 (+396.52%)
Mutual labels:  search, search-engine
Awesome Solr
A curated list of Awesome Apache Solr links and resources.
Stars: ✭ 69 (-40%)
Mutual labels:  search, search-engine
Rats Search
BitTorrent P2P multi-platform search engine for Desktop and Web servers with integrated torrent client.
Stars: ✭ 1,037 (+801.74%)
Mutual labels:  search, search-engine
Elasticsuite
Smile ElasticSuite - Magento 2 merchandising and search engine built on ElasticSearch
Stars: ✭ 647 (+462.61%)
Mutual labels:  search, search-engine
Algoliasearch Client Android
Algolia Search API Client for Android
Stars: ✭ 92 (-20%)
Mutual labels:  search, search-engine
Manticoresearch
Database for search
Stars: ✭ 610 (+430.43%)
Mutual labels:  search, search-engine
Minisearch
Tiny and powerful JavaScript full-text search engine for browser and Node
Stars: ✭ 737 (+540.87%)
Mutual labels:  search, search-engine
Typesense
Fast, typo tolerant, fuzzy search engine for building delightful search experiences ⚡ 🔍 ✨ An Open Source alternative to Algolia and an Easier-to-Use alternative to ElasticSearch.
Stars: ✭ 8,644 (+7416.52%)
Mutual labels:  search, search-engine
Better Search
Better Search WordPress plugin
Stars: ✭ 9 (-92.17%)
Mutual labels:  search, search-engine
Fess
Fess is very powerful and easily deployable Enterprise Search Server.
Stars: ✭ 561 (+387.83%)
Mutual labels:  search, search-engine
Algoliasearch Client Php
⚡️ A fully-featured and blazing-fast PHP API client to interact with Algolia.
Stars: ✭ 565 (+391.3%)
Mutual labels:  search, search-engine
Github Awesome Autocomplete
Add instant search capabilities to GitHub's search bar
Stars: ✭ 1,015 (+782.61%)
Mutual labels:  search, search-engine
Lieu
community search engine
Stars: ✭ 76 (-33.91%)
Mutual labels:  search, search-engine

Feature

Download Macketplace Github Page Eno Yao

English | 中文

A simple extension for VSCode to search or translate online easily using different engine.

How To Use

Search

You can select a keyword in the code, right-click to open the drop-down menu, select Search Online, it will automatically open the browser for you and search for related content.

Or select a keyword in the code, use the shortcut key cmd+enter(mac) / ctrl+enter(win) to open the browser search results.

2

Translate

You can select a keyword in the code, right-click the drop-down menu and select Traslate Online, it will automatically open the browser and use Google Translate to help you translate the content.

Or select a keyword in the code, use the shortcut key cmd+shift+enter(mac) / ctrl+shift+enter(win) to translate the content.

1

Support offline dictionary search, select keywords in the code, the translation results will appear in the lower right corner of the bottom bar, if you want to view more detailed translation results, you can click the chinese translation results in the lower right corner of the bottom bar, and your default browser for online translation.

{
  "search-online.show-status-bar": true
}

8

Switch Search Engine

You can switch between different search engines according to your needs, just click Search Engine in the bottom bar of vscode, and you can switch search engines. Google search used by the search engine by default.

3

Or, you can right-click to open the drop-down menu after selecting the keywords, and click Search Online By Switch Engine, you can switch the engine to search results.

4

If necessary, you can change the request address of the search engine.

5

The default request address format for each search is as follows. Note that the keywords searched in the link use %SELECTION% instead.

Engine Url
Google https://www.google.com/search?q=%SELECTION%
Bing https://www.bing.com/search?q=%SELECTION%
Github https://www.github.com/search?q=%SELECTION%
Baidu https://www.baidu.com/search?q=%SELECTION%
Npm https://www.npmjs.com/search?q=%SELECTION%
Yahoo https://search.yahoo.com/search?p=%SELECTION%
Wiki https://wikipedia.org/wiki/%SELECTION%
Duck https://duckduckgo.com/?q=%SELECTION%
Code Pen https://codepen.io/search/pens?q=%SELECTION%
Code Sandbox https://codesandbox.io/search?query=%SELECTION%

Or modify the .vscode/setting.json file to change the default search engine. For example, modify to the following configuration, then every time you click on Search Online, you will use Bing to search for related content.

{
  "search-online.search-engine": "Bing"
}

Or modify the .vscode/setting.json file to add a new search engine. For example, by modifying .vscode/setting.json below, two new search engines, Visual Studio Marketplace and Pypi, are added.

{
  "search-online.add-search-engine": [
    {
      "name": "Visual Studio Marketplace",
      "url": "https://marketplace.visualstudio.com/search?term=%SELECTION%&target=VSCode"
    },
    {
      "name": "Pypi",
      "url": "https://pypi.org/search/?q=%SELECTION%"
    }
  ]
}

You can also use the add search engine option to manually add a search engine, you need to provide the name and search address, for example↓.

name: Visual Studio Marketplace

url: https://marketplace.visualstudio.com/search?term=%SELECTION%&target=VSCode

6

Switch Language Engine

You can change the translation language configuration item of the extension to help you translate different texts.

7

Thanks

Development Team


Eno Yao

中文编程

If the extension can help you, please enter the Rating & Review link to give me a five-star praise.

If you have any questions or suggestions during use, please leave a message in the issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].