RubyDoc Search
Search Ruby documentation from ruby-doc.org within the Chrome omnibox
What is RubyDoc Search?
RubyDoc Search is a Chrome extension developed by Dave McCloskey, and its main feature is "Search Ruby documentation from ruby-doc.org within the Chrome omnibox".
Extension Screenshots
Download RubyDoc Search Extension CRX File
Download RubyDoc Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds a custom search engine to the Chrome omnibox. Just type "rdoc" then tab to start a custom search. Your query will show results from ruby-doc.org. This is a fork from MDN Search and available on github at https://github.com/dave-mccloskey/ruby-doc-search. Thanks to https://github.com/lorddoig for v2 updates.
Extension Basic Information
Name | RubyDoc Search |
ID | lhaebcbddhgblebbgogeikhnecldoigd |
Official URL | https://chromewebstore.google.com/detail/rubydoc-search/lhaebcbddhgblebbgogeikhnecldoigd |
Description | Search Ruby documentation from ruby-doc.org within the Chrome omnibox |
File Size | 323 KB |
Installation Count | 117 |
Current Version | 2.0.1 |
Last Updated | 2022-03-29 |
Publish Date | 2014-03-28 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Dave McCloskey |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RubyDoc Search", "description": "Search Ruby documentation from ruby-doc.org within the Chrome omnibox", "version": "2.0.1", "omnibox": { "keyword": "rdoc" }, "options_page": "options\/index.html", "content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'", "icons": { "16": "rubydoc-16.png", "48": "rubydoc-48.png", "128": "rubydoc-128.png", "512": "rubydoc-512.png" }, "background": { "scripts": [ "jquery-1.7.2.min.js", "underscore-1.3.3.min.js", "rubydoc_search.js" ] } } |