Plugin info

Total downloads: 10,822
Active installs: 200
Total reviews: 4
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 3
Last updated: 12/7/2025 (24 days ago)
Added to WordPress: 6/24/2007 (18 years old)
Minimum WordPress version: 4.6
Tested up to WordPress version: 6.9
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Actively maintained • Last updated 24 days ago • 4 reviews

70/100

Is Open Search abandoned?

Likely maintained (last update 24 days ago).

Compatibility

Requires WordPress: 4.6
Tested up to: 6.9
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

The plugin creates an OpenSearch Document for your blog.

It supports Google Chromes “Tab to Search” and “search_provider” WebExtension, Firefox’ “OpenSearch plugins”, Safaris “Quick Website Search”, and “custom searches” for Microsofts Edge browser.

From the spec:

Search clients can use OpenSearch description documents to learn about the public interface of a search engine. These description documents contain parameterized URL templates that indicate how the search client should make search requests. Search engines can use the OpenSearch response elements to add search metadata to results in a variety of content formats.

Other integrations and extensions:

Installation

  1. Upload open-search-document-folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the Plugins menu in WordPress
  3. that’s it 🙂

Frequently Asked Questions

Chromes “Tab to Search” no longer works

Chromes “Tab to Search” is now an opt-in feature. Go to chrome://settings/searchEngines, search for your Website and press the “Activate” button.

How to add query params to the Search-URLs

You can add custom params to the search URL using the osd_search_url_template filter.

function custom_osd_extend( $url, $type ) {
    $url = add_query_arg( 'mtm_campaign', 'opensearch', $url );

    return $url;
}
add_filter( 'osd_search_url_template', 'custom_osd_extend', 10, 2 );

Review feed

rinma
4/20/2017

Do what it should

This plugin is easy to use. Install it and it works :)
Saleswonder Team: Tobias
1/23/2018

thanks for the update, why not used on more webpages?

Maybe an gif animation for the visitors which is linked to a desccription howto use would be nice. i would like to translate to german.

Screenshots

  1. Firefox OpenSearch plugins

    Firefox OpenSearch plugins

  2. Safari Quick Website Search

    Safari Quick Website Search

  3. Chrome Tab to Search

    Chrome Tab to Search

Changelog

4.1.3

  • update plugin structure

4.1.1

  • fix PHP deprecated: strstr(): Passing null to parameter

4.1.0

4.0.1

  • fix broken XML output

4.0.0

  • modernize code
  • added filters for the search URLs in the OSD document

3.0.3

  • fix missing permission callback

3.0.2

  • update requirements

3.0.1

  • added screenshots
  • code improvements

3.0.0

  • moved to WordPress API

2.1.2

  • fixed site icon implementation

2.1.1

  • fixed site icon implementation

2.1.0

  • fixed XML output
  • encapsulated XML data

2.0.0

  • complete refactoring
  • WordPress coding style
  • Site icon support

1.3.1

  • Some smaller fixes

1.3

  • fixed host-meta link
  • added webfinger support

1.2.2

  • Added function to flush rewrite_rules

1.2.1

  • Autodiscovery for host-meta

1.2

  • OpenSearch Suggestions extension

1.1

  • WordPress 2.8.x compatibility
  • Autodiscovery for RSS/Atom and XRDS
  • Profile-Services

1.0

  • Initial release