Ruby On Rails Error Search
Finds Ruby On Rails server errors on page and searches for answers
What is Ruby On Rails Error Search?
Ruby On Rails Error Search is a Chrome extension developed by Carl Schwope, Ben Calegari, and its main feature is "Finds Ruby On Rails server errors on page and searches for answers".
Download Ruby On Rails Error Search Extension CRX File
Download Ruby On Rails Error 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
This app parses a Ruby On Rails error page in the Development Environment. When the icon is clicked, requests are sent to Stack Overflow, and the top 5 answers to the error are displayed.
Extension Basic Information
Name | |
ID | hnnoalplccaloofajfgkblilbjjibmgc |
Official URL | https://chrome.google.com/webstore/detail/ruby-on-rails-error-searc/hnnoalplccaloofajfgkblilbjjibmgc |
Description | Finds Ruby On Rails server errors on page and searches for answers |
File Size | 19.82 KB |
Installation Count | 25 |
Current Version | 1.1 |
Last Updated | 2013-10-21 |
Publish Date | 2013-10-21 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Carl Schwope, Ben Calegari |
Payment Type | free |
Supported Languages | |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ruby On Rails Error Search", "description": "Finds Ruby On Rails server errors on page and searches for answers", "version": "1.1", "author": "Carl Schwope, Ben Calegari", "icons": { "128": "main_icon.png" }, "permissions": [ "tabs", "activeTab" ], "browser_action": { "default_icon": "button_icon.png", "default_title": "Search errors on Stack Overflow", "default_popup": "results.html" }, "content_scripts": [ { "matches": [ "http:\/\/localhost:3000\/*" ], "js": [ "main.js", "compile_result.js", "process_localHost.js", "query_stackOverflow.js" ] } ] } |