RailsPanel

Devtools panel for Rails development

什麼是RailsPanel?

RailsPanel是由Dejan Simic開發的Chrome擴展程式,該擴展的主要功能是“Devtools panel for Rails development”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載RailsPanel擴展crx文件

下載RailsPanel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}