RailsPanel

Devtools panel for Rails development

Co to jest RailsPanel?

RailsPanel to rozszerzenie Chrome opracowane przez Dejan Simic, a jego główną funkcją jest „Devtools panel for Rails development”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia RailsPanel

Pobierz pliki rozszerzeń RailsPanel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa RailsPanel RailsPanel
ID gjpfobpafnhjhbajcjgccbbdofdckggg
Oficjalny URL https://chromewebstore.google.com/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
Opis Devtools panel for Rails development
Rozmiar pliku 155 KB
Liczba instalacji 10,282
Aktualna Wersja 0.3.3
Ostatnia Aktualizacja 2019-05-09
Data Publikacji 2019-05-09
Ocena 4.83/5 Łącznie 104 Oceny
Deweloper Dejan Simic
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dejan/rails_panel
Adres URL Strony Pomocy https://github.com/dejan/rails_panel/issues?state=open
Obsługiwane Języki 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"
    }
}