LoginSignup
1
1

More than 5 years have passed since last update.

TutorialsPointのヘッダやサイドメニューを削除するon Chrome

Last updated at Posted at 2016-05-16

TutorialsPointのオンラインIDEは,メニューが多いので画面が小さいと見づらい(左図).
そこでヘッダ・サイドメニューを取り除く(右図).

スクリーンショット 2016-05-16 11.50.12.png

Minimalist for Everythingを使う

Chrome拡張のMinimalistをインストール.

設定

  1. モジュールを追加

スクリーンショット 2016-05-16 11.53.29.png

  1. オプションを追加
CSSオプションに追加する項目
div.panel.layout-panel.layout-panel-north,
div.panel.layout-panel.layout-panel-west.layout-split-west,
div.panel.layout-panel.layout-panel-east.layout-split-east,
div.panel-header
{
   display: none !important;
}

div.panel.layout-panel.layout-panel-south.layout-split-south
{
    height: 30% !important;
}
HeadJSに追加する項目
setEditorTabSize('2');

スクリーンショット 2016-05-16 11.51.23.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1