増井俊之
https://i.gyazo.com/ce44a0adde8a39df00cfa744d8f42d95.png
/icons/mail.icon masui@sfc.keio.ac.jp, masui@pitecan.com, tmasui@gmail.com, masui@masui.org
/icons/Scrapbox.icon masui /icons/skype.icon toshiyukimasui
/icons/Wikipedia.icon 増井俊之 勤務先
〒252-0882 藤沢市遠藤5322
https://gyazo.com/a1a6b8d777b0f4e4b749e3a969a8e5dd
code:script.js__
/api/code/villagepump/リアルタイム版ScrapCalc/script.js
code:script.js
import '/api/code/masui/ScrapExec/script.js'
code:script.js
import '/api/code/masui/ScrapCalc/script.js'
code:style.css
@import '/api/code/masui/ScrapCalc/style.css';
コードブロックを小さく
code:style.css
.line span.code-block {
line-height: 1.2em;
font-size: 88%;
}
code:style.css_____
.navbar .kamon {
display: none;
}
Dynamic Macro
code:script.js_____
import '/api/code/customize/Scrapbox_Dynamic_Macro/script.js'
code:script.js_____
scrapbox.PopupMenu.addButton({
title: '日本語⇒英語',
onClick: text => window.open(https://translate.google.com/#ja/en/${text})
})
scrapbox.PopupMenu.addButton({
title: '英語⇒日本語',
onClick: text => window.open(https://translate.google.com/#en/ja/${text})
})
リストのサイズバーを消す
last modified / last visited などのメニューも消える
code:style.css
.quick-launch .right-box {
display: none;
}
.quick-launch .private-badge {
display: none;
}
code:style.css
/*
.unread {
width: 12px !important;
border-width: 0px 3px 0px 0px !important;
border-color: #007 !important; background-color: #999 !important; }
*/
/*
.unread {
width: 0px !important;
border-right-width: 3px !important;
border-left-width: 10px !important; テロメアの太さ最大値
border-right-color: #000 !important; border-left-color: #8f9899 !important; }
.unread:hover {
width: auto !important;
border-right: 0 !important;
}
*/
.unread {
border-color: #333 !important; }
body {
/*
*/
}
div.page {
opacity: 0.93;
}
li.page-list-item {
opacity: 0.93;
}
/*
.cursor {
animation: blink 1s infinite;
width: 4px;
}
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 0; }
51% { opacity: 1; }
100% { opacity: 1;}
}
*/
/*
.grid li.two-two.page-list-item {
width: 216px !important;
height: 316px !important;
}
.grid li.two-two.page-list-item a .title {
font-size: 20px !important;
}
.grid li.page-list-item {
width: 100px !important;
height: 150px !important;
}
.grid li.page-list-item a .title {
font-size: 12px !important;
}
*/
code:script.js_____
/*
$('body').attr('data-daiiz-rel-bubble', 'on'); // 関連ページを吹き出し表示する
$('body').attr('data-daiiz-text-bubble', 'on'); // リンク先ページのテキストを表示する
scrapbox.PopupMenu.addButton({
title: 'Google翻訳',
onClick: text => window.open(https://translate.google.com/#ja/en/${text})
})
*/
codeblockのフォントを小さくする
code:style.csss
span.code-block {
line-height: 20px;
font-size: 88%;
}
codeblockの頭を静かな色にする
code:style.css
.line span.code-block .code-block-start {
}
.line span.code-block .code-block-start a {
}
#で始まるタグをラベル風にする
code:style.css
/* #で始まるタグをラベル風にする */
display: inline-block;
padding: 2px 8px;
margin: 0 8px 10px 0;
font-size: 0.8em;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
code:script.js
$('head > linkrel=icon').attr('href','/api/pages/icons/Nota/icon'); 現在位置を取得
code:script.js
import '/api/code/Nota/Geolocation%20watchPositionで現在位置を取得するUserScript/script.js'
新規作成ボタンを消す
code:style.css
.new-button { /* 新規ボタンを消す */
visibility: hidden;
}
Enterキーで新規ページ作成
code:script.js
// 不要になった
// $('body').on('keydown',function(e){
// if(e.target.tagName != "TEXTAREA" && e.target.tagName != "INPUT"){
// if(e.key == 'Enter'){
// var project = location.href.split('/')3; // location.href = /${project}/new;
// }
// }
// });
//$('.btn.btn-default').on('click',function(){
// var s = $('.form-control').val();
// if(s == ''){
// var project = location.href.split('/')3; // location.href = /${project}/new;
// }
//});
Enterキーで新規ページ作成
code:script.js
$('body').on('keydown',function(e){ // Enterキーで新規ページ作成
if(e.target.tagName != "TEXTAREA" && e.target.tagName != "INPUT"){
if(e.key == 'Enter'){
var project = location.href.split('/')3; location.href = /${project}/new;
}
}
});
/* $('.btn.btn-default').on('click',function(){ */
$('button').on('click',function(){
var s = $('.form-control').val();
if(s == ''){
var project = location.href.split('/')3; location.href = /${project}/new;
}
});
code:style.css
/* 1. Scrapboxアイコンをバーガーアイコンに置き換え
.navbar-brand img, .navbar-brand span { display: none !important }
.navbar-brand::before {
content: '\f0c9'; font-family: FontAwesome; font-size: 28px; color: #bbbbbb; } */
.brand-icon { display: none !important }
/*
.navbar-brand::before {
content: '\f0c9'; font-family: FontAwesome; font-size: 28px; color: #bbbbbb; } */
音声入力
code:script.js____
import '/api/code/shokai/音声入力Menu/script.js'
code:style.css
.navbar-default { /* 検索フォームの色 */
}
form { /* 検索フォームの枠 */
}
トップのメニューバー(navbar)を固定
code:style.css
/* はりつくメニューバー */
/* @media screen and (min-height: 600px) and (min-width: 768px) { */
@media screen {
body:not(.presentation) { padding-top: 0px; padding-right: 0 !important } /*******/
body:not(.presentation) .page-menu { position: fixed; top: 90px }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 990; overflow: unset }
.dropdown.open .dropdown-menu {
position: absolute; left: auto; top: auto;
max-height: calc(100vh - 100px); overflow-y: auto }
.dropdown.open .dropdown-menu.global-menu { left: 0; top: 54px }
.page-menu .dropdown.open .dropdown-menu { position: absolute; top: 0 }
}
code:style.css___
/* プロジェクトTOPへのリンクと周辺パーツを強引にnavbarに移動 */
/* ※次のnavbar固定と同時に使う必要がある */
@media screen and (min-width: 768px) {
.quick-launch .project-home {
position: fixed; top: 0px; left: calc((100% - 1080px)/2); z-index: 990 }
/*.page { padding-top: 0 }*/ }
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .project-home { left: 65px } }
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .project-home { left: 80px } }
@media screen and (min-width: 1261px) {
.quick-launch .project-home { left: calc((100% - 1260px)/2 + 80px) } }
プロジェクトタイトルをnavbar(トップのメニュー)に固定
code:style.css
@media screen and (min-width: 767px) {
.quick-launch .project-home {
position: fixed;
top: -2px;
/* left: calc((100% - 1080px)/2); */
z-index: 1000;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .project-home {
left: 55px
}
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .project-home {
left: 70px;
}
}
@media screen and (min-width: 1261px) {
.quick-launch .project-home {
left: calc((100% - 1280px)/2 + 0px)
}
}
code:style.css__
.deco-\= {
padding: 0.1em 0.2em 0.1em 0.2em;
}
.scrapcalc_result {
font-style:italic;
font-weight:bold;
background-color:yellow;
}
strictの制限を回避
code:script.js__
function scrapcalc_commands(){
const commands = [];
let count = 0;
for(let expr of document.querySelectorAll('.scrapcalc_result')){
expr.remove();
}
for(let expr of document.querySelectorAll('.deco-\\=')){
let text = expr.innerText;
if(text.match(/=/)){
commands.push(decodeURI(text) + ';');
}
else {
let id = scrapcalc_element_id_${count};
var span = document.createElement('span');
span.id = id;
span.classList.add("scrapcalc_result");
expr.parentNode.appendChild(span)
expr.classList.add("scrapcalc_exp")
expr.style.display = 'none';
commands.push(document.getElementById("${id}").innerText = ${decodeURI(text)};);
count += 1;
}
}
return commands.join("\n");
}
ショートカットキー(Ctrl-C)でScrapCalcを呼び出す
何かクリックされたらもとに戻す
トグルする
code:script.js
function scrapcalc_reset(){
for(let expr of document.querySelectorAll('.scrapcalc_result')){
expr.remove();
}
for(let expr of document.querySelectorAll('.scrapcalc_exp')){
expr.style.display = 'inline';
}
}
document.addEventListener('keypress', e => {
if (e.key == 'c' && e.ctrlKey){
if(document.querySelectorAll('.scrapcalc_result').length == 0){
const scrapcalc_func = Function((() => {${scrapcalc_commands()}})(););
scrapcalc_func();
}
else {
scrapcalc_reset();
}
}
})
/*
document.addEventListener('click', e => {
scrapcalc_reset();
})
*/
code:__style.css
.deco-\= {
padding: 0.1em 0.2em 0.1em 0.2em;
}
.scrapcalcresult {
font-style:italic;
font-weight:bold;
background-color:yellow;
}
strictの制限を回避
code:__script.js
function strict(){
const commands = [];
let count = 0;
for(let expr of document.querySelectorAll('.scrapcalcresult')){
expr.remove();
}
for(let expr of document.querySelectorAll('.deco-\\=')){
let text = expr.innerText;
if(text.match(/=/)){
commands.push(decodeURI(text) + ';');
}
else {
let id = scrapcalc_element_id_${count};
var span = document.createElement('span');
span.id = id;
span.classList.add("scrapcalcresult");
expr.parentNode.appendChild(span)
expr.classList.add("scrapcalcexp")
expr.style.display = 'none';
commands.push(document.getElementById("${id}").innerText = ${decodeURI(text)};);
count += 1;
}
}
return commands.join("\n");
}
https://gyazo.com/12c0ea2fdbc86632c2059d602a4cca18
1~4で記入
1. 自分は周りの人たちの中になじんでいると感じますか q1 = 4
2. 自分には人との付き合いがないと感じることがありますか q2 = 1
3. 自分には頼れる人が誰もいないと感じることがありますか q3 = 1
4. 自分はひとりぼっちだと感じることがありますか q4 = 1
5. 自分は友人や仲間のグループの一員だと感じることがありますか q5 = 3
6. 自分は周りの人たちと共通点が多いと感じることがありますか q6 = 3
7. 自分は誰とも親しくしていないと感じることはありますか q7 = 1
8. 自分の関心や考えは周りの人たちにはわからないと感じることがありますか q8 = 1
9. 自分を社交的で親しみやすいと感じますか q9 = 3
10. 自分には親しい人たちがいると感じますか q10 = 4
11. 自分は取り残されていると感じることがありますか3 q11 = 1
12. 他人との関わりは意味がないと感じることがありますか q12 = 1
13. 自分のことを本当によく知っている人は誰もいないと感じることはありますか q13 = 1
14. 自分は他の人たちから孤立していると感じることはありますか q14 = 1
15. 希望すれば自分と気の合う仲間は見つかると感じますか q15 = 4
16. 自分を本当に理解している人がいると感じますか q16 = 4
17. 自分は内気であると感じますか q17 = 1
18. 周りの人たちと一体感がもてないと感じることがありますか q18 = 1
19. 話し相手がいると感じますか q19 = 4
20. 頼れる人がいると感じますか q20 = 4
孤独度 = (5-q1)+q2+q3+q4+(5-q5)+(5-q6)+q7+q8+(5-q9)+(5-q10)+q11+q12+q13+q14+(5-q15)+(5-q16)+q17+q18+(5-q19)+(5-q20)
特定のページがリストに表示されないようにする
code:style.css
{display: none !important;}
関連ページを左側に表示
code:style.css
@media (min-width: 768px) {
/* 要素横並び */
div.page-wrapper {
display: flex;
justify-content: space-around;
}
div.drag-and-drop-enter {
order: 2;
width: calc(100% - 250px);
}
div.related-page-list {
order: 1;
flex-basis: 216px;
padding: 0 8px;
background-color: var(--related-page-list-bg);
}
/* 関連リンク一覧形状変更 */
div.related-page-list{
font-family: var(--relation-title-font);
}
div.related-page-list .grid li.relation-label,
div.related-page-list li.page-list-item,
div.related-page-list li.ellipsis {
/* サイズ変更(共通) */
width: 200px;
}
div.related-page-list .grid li.relation-label {
/* ラベルサイズ変更 */
height: var(--relation-label-height);
margin-bottom: 0;
}
div.related-page-list li.page-list-item,
div.related-page-list li.ellipsis {
/* カードサイズ変更 */
height: 50px;
margin-bottom: 3px;
}
div.related-page-list .grid li.relation-label .arrow {
display: none;
}
.related-page-list li.relation-label a {
/* 関連リンク ラベル */
display: flex !important;
padding: 0 !important;
background-color: inherit;
border-bottom: 2px solid var(--relation-label-border);
}
.related-page-list li.page-list-item a {
/* 関連リンク カード */
border-right: 6px solid var(--card-border);
}
.related-page-list li.relation-label a,
.related-page-list li.page-list-item a {
/* 関連リンク ラベル・カード(共通) */
border-radius: 0;
}
.related-page-list ul.grid:hover li.relation-label a,
.related-page-list div.links-2-hop ul.grid:hover li.relation-label a,
.related-page-list li.page-list-item a:hover {
/* 関連リンク ラベル・カード(共通、ホバー時) */
transition: 0s;
}
.related-page-list div.links-2-hop ul.grid li.relation-label a {
/* 関連リンク 2 hops link ラベル */
background-color: var(--relation-label-2-hop-bg);
}
.related-page-list div.links-2-hop ul.grid:hover li.relation-label a {
/* 関連リンク 2 hops link ラベル(ホバー時) */
background-color: var(--relation-label-2-hop-hover-bg);
}
.related-page-list li.relation-label a:hover {
/* 関連リンク ラベル(ホバー時) */
filter: brightness(80%);
}
.related-page-list li.page-list-item a:hover {
/* 関連リンク カード(ホバー時) */
/* background-color: var(--card-hover-bg); */
}
.related-page-list li.ellipsis a {
/* 2 hopが大きすぎるときに出る三点ボタン */
padding: 0;
}
.related-page-list li.ellipsis a div.circle {
/* 三点ボタンをホバーした時に表示される丸 */
height: auto;
}
.related-page-list span.kamon::before {
/* 鎖マークの大きさ */
font-size: 14px;
}
.related-page-list li.page-list-item .content > .description {
display: none;
}
.related-page-list li.relation-label a span.title,
.related-page-list ul.grid li.page-list-item a .header {
/* リンクのタイトル文字がある空間(共通) */
border-top: 0;
width: 158px;
padding: 7px 3px;
margin-left: 42px;
text-align: left;
}
.related-page-list li.relation-label a span.title {
/* リンクのタイトル文字がある空間(ラベル) */
padding: 0 3px;
line-height: var(--relation-label-height);
}
.related-page-list ul.grid li.page-list-item a .header {
/* リンクのタイトル文字がある空間(カード) */
padding: 7px 3px;
}
.related-page-list li.relation-label a span.title,
.related-page-list ul.grid li.page-list-item a .header .title {
/* リンクのタイトル文字(共通) */
font-family: var(--relation-title-font);
font-size: 14px;
font-weight: bold;
}
.related-page-list li.relation-label a:hover span.title,
.related-page-list ul.grid li.page-list-item a:hover .header .title {
/* リンクのタイトル文字(共通、ホバー時) */
transition: 0s;
}
.related-page-list li.relation-label a:hover span.title {
/* リンクのタイトル文字(ラベル、ホバー時) */
}
.related-page-list ul.grid li.page-list-item a:hover .header .title {
/* リンクのタイトル文字(カード、ホバー時) */
color: var(--card-hover-title-color);
}
.related-page-list ul.grid li.page-list-item a:hover .hover {
/* opacity: 0 !important; */
}
.related-page-list li.relation-label a span.kamon.icon-lg,
.related-page-list ul.grid li.page-list-item a .icon {
/* リンクのアイコン */
display: flex;
position: absolute;
align-items: center;
justify-content: center;
width: 30px;
margin: 0;
margin-left: 6px;
padding: 0;
}
.related-page-list li.relation-label a span.kamon.icon-lg {
/* リンクのアイコン(ラベル) */
height: 25px;
}
.related-page-list ul.grid li.page-list-item a .icon {
/* リンクのアイコン(カード) */
height: 50px;
}
.related-page-list ul.grid li.splitter {
height: 5px;
}
}
タイムスタンプフォーマット変更
code:script.js
scrapbox.TimeStamp.removeAllFormats()
scrapbox.TimeStamp.addFormat("YYYY/M/D")
scrapbox.TimeStamp.addFormat("YYYY/M/D HH:mm:ss")
インデントが同じところに線を引く
code:style.css
.indent-mark {
height: 100% !important;
}
.indent-mark .pad {
height: 100% !important;
overflow: unset !important;
}
.indent-mark span:nth-child(2n+2) .pad {
}
.indent-mark span:nth-child(2n+1) .pad {
}
//Premy
code: script.js
(async () => {
const {runPremy} = await import("/api/code/hata6502/premy/index.js");
runPremy();
})();
// Kanvas
code: ____script.js
import {runKanvas} from "/api/code/hata6502/kanvas/index.js";
runKanvas();
折り畳み
code:script.jsxxxx
import { setup } from "/api/code/villagepump/箇条書きを折り畳むUserScript_(takker)/mod.js";
// 起動
const { cleanup } = setup();
// 終了したいときはcleanupを呼ぶ
// cleanup();
未読だけのページでも右側にテロメア表示
code:script.js
const dummyUnread = document.createElement('div')
dummyUnread.classList.add('unread')
const dummy = document.createElement('div')
dummy.classList.add('telomere')
dummy.appendChild(dummyUnread)
document.body.appendChild(dummy)
折り畳み - 見出しをリストするメニュー
code:script.js
import '/api/code/shokai/ページの見出しを作るUserScript/script.js'
code:style.css
.grid li.page-list-item a:not(:visited) {
}