nishio
これはScrapboxの仕様上、あるとベターな自分のページです。 https://gyazo.com/03051565f03a70a83b182fda5965e187
こうやって個人ページを作っておくとCtrl+iでアイコンが出るようになる
画像の貼られたページを最初にピン止めしておくことでそれがFaviconになり、ブラウザのタブなどでわかりやすい。
https://gyazo.com/c078c5aa55ddbddd85530c5136b163e8
-----以下個人的なカスタマイズのためのユーザースクリプトなど-----
code:style.css
code:script.js
import '/api/code/nishio/MyUserScript/script.js'
---
code:script.js
import "/api/code/nishio/pin-diary-X/min.js"
code:disabled_script.js.disabled
import "/api/code/nishio/最近開いてないページ/script.js"
code:script.js.disabled
import '/api/code/nishio/add_watchlist/script.js'
code:script.js
import '/api/code/nishio/open_with_mem/script.js'
code:script.js
import '/api/code/nishio/open_with_quartz/script.js'
code:script.js.disabled
import '/api/code/nishio/open_with_porter/script.js'
code:script.js.disabled
import { mount } from "../ScrapBubble-min/app.js";
mount({
});
code:script.js.disabled
import('/api/code/nishio/ScrapboxでCtrl+EnterしてKeichoに質問させる/script.js');
1. 箇条書きの先頭を全てTabに置き換える
2. 文中の全角・半角空白を取り除く
3. 文字化けを修正する (今回は での を での に直す)
4. 全角英数字を半角英数字に置き換える
5. 全角括弧を半角括弧に置き換える
6. 括弧で囲まれた前後に空白を入れる
7. コードブロック記法の前後に空白を入れる
code:script.js.disabled
scrapbox.PopupMenu.addButton({
title: 'format',
onClick: text => text.split('\n').map(function(line) {
return line.replace(/^\s*/g, s => s.replace(/\s/g, '\t'))
// .replace(/ /g, '')
.replace(/ぁ-ん|ァ-ヴ゙/g, s => String.fromCharCode(s.charCodeAt(0) + 1)) .replace(/A-Za-z0-9/g, s => String.fromCharCode(s.charCodeAt(0) - 0xFEE0)) .replace('(', '(')
.replace(')', ')')
.replace(/\S\(/g, s => s.charAt(0) + ()
.replace(/\)\S/g, s => ') ' + s.charAt(1))
.replace(/\S.*/g, s => s.charAt(0) + ' ' + s.slice(1))
.replace(/.*\S/g, s => s.slice(0, -1) + ' ' + s.slice(-1))
}).join('\n')
})
code:script.js.disabled
var pagename = document.location.pathname.split("/").pop();
if(pagename == "cross_search"){
console.log(pagename);
var query = document.location.search.substr(1);
var page = document.getElementsByClassName("page")0; }
code:disabled_script.js.disabled
$('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(){
var s = $('.form-control').val();
if(s == ''){
var project = location.href.split('/')3; location.href = /${project}/new;
}
});
タイムタギング
年のタグ、月日のタグ、年月のタグを作る。「何年ごろ何やってたかな」もできるし「何年の何月ごろ」と狭めることもできる。月日のタグは「過去のこの日」に使う。 code:script.js.disabled
scrapbox.PopupMenu.addButton({
title: "TimeTag",
onClick: (text) => {
var m = text.match(/((\d\d)?(\d\d))-?(\d\d)-?(\d\d)/);
return ${year}-${month}-${day} #${year} #${month}-${day} #${year}-${month};
}
})
2018-09-19 日時のフォーマットを←にする
Moved To MyUserScript
code:script.js.disabled
scrapbox.TimeStamp.removeAllFormats()
scrapbox.TimeStamp.addFormat("YYYY-MM-DD")
2018-06-22
code:script.js.disabled
import '/api/code/nishio/抜き書きUserScript/script.js'
2018-06-12
小さくする
code:script.js.disabled
var elm=document.createElement('span');
elm.append("ZoomOut")
elm.onclick = ()=>{
document.getElementsByClassName("page-list")0.setAttribute('style', 'zoom: 0.5') document.getElementsByTagName('body')0.webkitRequestFullscreen() }
document.getElementsByClassName("search-form")0.parentElement.append(elm) 2018-05-25
code:script.js.disabled
import '/api/code/nishio/Scrapbox振り返り機能/script.js'
音声入力
2018-04-15
code:script.js.disabled
import '/api/code/shokai/音声入力Menu/script.js'
塩澤先生のプロジェクトから
tweetメニュ
code:script.js.disabled
scrapbox.PageMenu.addItem({
title: 'Tweet',
onClick: () => window.open(https://twitter.com/intent/tweet?url=${encodeURIComponent(location.href)}&text=${encodeURIComponent(document.title)})
})
文字数カウントメニュ
code:script.js.disabled
scrapbox.PageMenu.addItem({
title: () => {
if (!scrapbox.Page.lines) return
const chars = scrapbox.Page.lines.map(line => line.text.length).reduce((a,b) => a + b)
const words = scrapbox.Page.lines.map(line => line.text.split(/\s+/).length).reduce((a,b) => a + b)
return ${chars}文字 ${words}単語 ${scrapbox.Page.lines.length}行
},
onClick: () => null
})
文字数カウンタ
code:style.css_disabled
@import "/api/code/nishio/見える文字数カウンター/style.css";
code:script.js_disabled
import "/api/code/nishio/見える文字数カウンター/script.js";
選択文字列をプロジェクト内で検索ポップアップ
code:script.js.disabled
// 選択された文字列をScrapboxプロジェクト内で検索する
// Scapbox検索ボックスを使ったときと同じ結果ページを開く
scrapbox.PopupMenu.addButton({
title: 'SB内検索',
onClick: function (text) {
var projectName = 'shio';
}
});
---
ページの1部分を新規ページに切り出す
code:disabled_script.js.diabled
scrapbox.PopupMenu.addButton({
title: 'NewPage',
onClick: text => {
const lines = text.split(/\r\n/g) .trim()
.replace(/\^\+.icon\]/gm, '')
const projectRoot = (() => {
const tmp = location.href.split('/')
tmp.pop()
return tmp.join('/')
})()
const currentPageTitle = decodeURIComponent(location.href.split(/\//g).pop())
lines.unshift(from [${currentPageTitle}])
const body = encodeURIComponent(lines.join('\n'))
window.open(${projectRoot}/${title}?body=${body})
return [${title}]
}
})
2021-05-06
code:script.js.disabled
const privateProject = "znishio"
scrapbox.PageMenu.addItem({
title: 'to🔒',
onClick: () => {
const title = document.location.pathname.split("/")2; window.open(https://scrapbox.io/${privateProject}/🔒${title}, "_blank")
}
})
scrapbox.PageMenu.addItem({
title: 'make🔒',
onClick: () => {
const title = document.location.pathname.split("/")2; const body = [https://scrapbox.io/nishio/${title} 🌏] [${title}]
window.open(https://scrapbox.io/${privateProject}/🔒${title}?body=${body}, "_blank")
}
})
code:style.css.disabled
a.mobile-search-toggle {
padding: 1em;
}
.toggle-button.closed {
padding-right: 1em;
}
.toggle-button.open {
padding-right: 1em;
}