Ruby On Rails Error Search
Finds Ruby On Rails server errors on page and searches for answers
Wat is Ruby On Rails Error Search?
Ruby On Rails Error Search is een Chrome-extensie ontwikkeld door Carl Schwope, Ben Calegari, en de belangrijkste functie is "Finds Ruby On Rails server errors on page and searches for answers".
Download het CRX-bestand van de extensie Ruby On Rails Error Search
Download Ruby On Rails Error Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | hnnoalplccaloofajfgkblilbjjibmgc |
Officiële URL | https://chrome.google.com/webstore/detail/ruby-on-rails-error-searc/hnnoalplccaloofajfgkblilbjjibmgc |
Beschrijving | Finds Ruby On Rails server errors on page and searches for answers |
Bestandsgrootte | 19.82 KB |
Aantal Installaties | 25 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2013-10-21 |
Publicatiedatum | 2013-10-21 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Carl Schwope, Ben Calegari |
Betalingswijze | free |
Ondersteunde Talen | |
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" ] } ] } |