RailsPanel

Devtools panel for Rails development

RailsPanel란 무엇입니까?

RailsPanel은(는) Dejan Simic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Devtools panel for Rails development"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

RailsPanel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 RailsPanel RailsPanel
ID gjpfobpafnhjhbajcjgccbbdofdckggg
공식 URL https://chromewebstore.google.com/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
설명 Devtools panel for Rails development
파일 크기 155 KB
설치 횟수 10,282
현재 버전 0.3.3
최근 업데이트 2019-05-09
출시 날짜 2019-05-09
평점 4.83/5 총 104 개의 평점
개발자 Dejan Simic
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dejan/rails_panel
도움말 페이지 URL https://github.com/dejan/rails_panel/issues?state=open
지원되는 언어 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"
    }
}