# View Customize _**最終更新日:2023/09/18**_ Redmineの見た目をカスタマイズできる神プラグイン。 このサイトでもがっつり使ってます。 {{toc}} ## インストール方法 onozaty/redmine-view-customize: View customize plugin for Redmine https://github.com/onozaty/redmine-view-customize 他のプラグインと同じく、Redmineのプラグインフォルダに入れてインストールコマンドを打つだけ。 詳細はリンク先へ。 ## サンプル 有用なものをピックアップ! 公式リポジトリにもたくさんあります。 onozaty/redmine-view-customize-scripts: Code examples for "Redmine View Customize Plugin" https://github.com/onozaty/redmine-view-customize-scripts * トップメニューのヘルプを非表示 ``` パスのパターン: 種別:CSS ``` ``` css div#top-menu a.help{ display:none; } ``` * プロジェクトの活動を非表示 ``` パスのパターン:/projects/ 種別:CSS ``` ``` css .activity{ display:none !important; } ``` * wikiの外部リンクを別ウィンドウで開く ``` パスのパターン:/wiki[/]* 種別:JavaScript ``` ``` javascript $(function(){ $('a[href^=http]').attr('target','_blank'); }); ``` --- [[redmine:wiki|メインページに戻る]]