diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index e65deb61c5895b34744e1946ab11e98bc7a1af59..550ac51592aed450f248fd7ce4a5420b381b06f9 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -431,6 +431,7 @@ sounds: "サウンド"
 listen: "聴く"
 none: "なし"
 volume: "音量"
+details: "詳細"
 
 _sfx:
   note: "ノート"
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 4d325f280672e311ae374a0a5e99fee65dfc2209..410cb1d49ea446f89f28cacbb9d478fdd5e4e45e 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -85,7 +85,7 @@
 
 <script lang="ts">
 import Vue from 'vue';
-import { faBolt, faTimes, faBullhorn, faStar, faLink, faExternalLinkSquareAlt, faPlus, faMinus, faRetweet, faReply, faReplyAll, faEllipsisH, faHome, faUnlock, faEnvelope, faThumbtack, faBan, faQuoteRight } from '@fortawesome/free-solid-svg-icons';
+import { faBolt, faTimes, faBullhorn, faStar, faLink, faExternalLinkSquareAlt, faPlus, faMinus, faRetweet, faReply, faReplyAll, faEllipsisH, faHome, faUnlock, faEnvelope, faThumbtack, faBan, faQuoteRight, faInfoCircle } from '@fortawesome/free-solid-svg-icons';
 import { faCopy, faTrashAlt, faEye, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
 import { parse } from '../../mfm/parse';
 import { sum, unique } from '../../prelude/array';
@@ -489,6 +489,11 @@ export default Vue.extend({
 					noteId: this.appearNote.id
 				});
 				menu = [{
+					type: 'link',
+					icon: faInfoCircle,
+					text: this.$t('details'),
+					to: '/notes/' + this.appearNote.id
+				}, null, {
 					icon: faCopy,
 					text: this.$t('copyContent'),
 					action: this.copyContent