RailsPanel

Devtools panel for Rails development

What is RailsPanel?

RailsPanel is a Chrome extension developed by Dejan Simic, and its main feature is "Devtools panel for Rails development".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download RailsPanel Extension CRX File

Download RailsPanel 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

                        RailsPanel is a Chrome extension for Rails development that will end your tailing of development.log. Have all information about your Rails app requests right there in the Developer Tools panel. Provides insight to db/rendering/total times, parameter list, rendered views, text editor integration and more. 

To use this extension you need to add meta_request gem to your app's Gemfile:

group :development do
  gem 'meta_request'
end                    

Extension Basic Information

Name RailsPanel RailsPanel
ID gjpfobpafnhjhbajcjgccbbdofdckggg
Official URL https://chromewebstore.google.com/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
Description Devtools panel for Rails development
File Size 155 KB
Installation Count 10,282
Current Version 0.3.3
Last Updated 2019-05-09
Publish Date 2019-05-09
Rating 4.83/5 Total 104 Ratings
Developer Dejan Simic
Email [email protected]
Payment Type free
Extension Website https://github.com/dejan/rails_panel
Help Page URL https://github.com/dejan/rails_panel/issues?state=open
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RailsPanel",
    "version": "0.3.3",
    "manifest_version": 2,
    "description": "Devtools panel for Rails development",
    "devtools_page": "devtools.html",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "vendor\/assets\/javascripts\/jquery-1.8.3.min.js",
            "assets\/javascripts\/background.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "assets\/images\/Rails_Logo_16x16.png",
        "48": "assets\/images\/Rails_Logo_48x48.png",
        "128": "assets\/images\/Rails_Logo_128x128.png"
    }
}