page-menu-append-link
/rmaruon/他ページに現在ページへのリンクを追記する
TODO
別プロジェクトにリンクを追加できるようにする
TABLE_URLの指定を固定じゃなくしたい
code:script.js
;(() => {
const TABLE_URL = '/api/table/rmaruon-settings/page-menu-append-link/table.csv'
const PAGE_PREFIX = '' // "pages:_";
const MENU_TITLE = 'append'
scrapbox.PageMenu.addMenu({
title: MENU_TITLE,
image: 'https://gyazo.com/4f14c17b12661472c38a3ca3c91096e4/thumb/100',
})
scrapbox.PageMenu(MENU_TITLE).addItem({
title: 'Enter ...',
image: 'https://gyazo.com/7930135d79a8de8c97380ccc0b32ebc4/thumb/50',
onClick: () => {
const title = window.prompt('Enter a title')
if (!title) return
window.open(
`https://scrapbox.io/${
scrapbox.Project.name
}/${PAGE_PREFIX}${title}?body=[${encodeURIComponent(
scrapbox.Page.title
)}]`
)
},
})
try {
fetch(TABLE_URL)
.then((res) => res.text())
.then((text) => convertCSVtoTags(text))
.then((tags) => addItem(tags))
} catch (e) {
console.error('Failed to load.')
}
const convertCSVtoTags = (csv) => {
const tags = []
const lines = csv.split('\n').slice(1)
lines.forEach((line) => {
const title, image = line.split(',')
tags.push({ title: title, image: image })
})
return tags
}
const addItem = (tags) => {
tags.forEach(({ title, image }) => {
scrapbox.PageMenu(MENU_TITLE).addItem({
title: title,
image:
image ||
'https://gyazo.com/7930135d79a8de8c97380ccc0b32ebc4/thumb/50',
onClick: () =>
window.open(
`https://scrapbox.io/${
scrapbox.Project.name
}/${PAGE_PREFIX}${title}?body=[${encodeURIComponent(
scrapbox.Page.title
)}]`
),
})
})
}
})()
table:table
title image
いつかやる
プロジェクトリスト
pages: 公開するかも https://gyazo.com/9bf36235fbf153f2da63f8967ad02bc5/thumb/50
pages: !public https://gyazo.com/842c484251b60347de850d5d9a3d0166/thumb/50
table:*
🔑
000 【総記】
100 【哲学】
200 【歴史】
300 【社会科学】
400 【自然科学】
500 【工学】
600 【産業】
700 【芸術】
800 【言語】
900 【文学】
Apex Legends https://gyazo.com/09e35b10e9c41f1e0852e8c93b002861/thumb/50
bash/zsh
book https://gyazo.com/8eba2ef7e63fa783d9519a9a9416ae40/thumb/50
buy https://gyazo.com/2ea769a2a2f817745b061edfce2dc346/thumb/50
Chrome https://gyazo.com/805502d636fceed882af8db5ea50ef1a/thumb/50
CSS https://gyazo.com/28702e0194a8bf866ff08aa705995fea/thumb/50
Git/GitHub https://gyazo.com/85e916e068c33116da6309d8285978d6/thumb/50
HTML https://gyazo.com/28bf4c12f90bf892d36b50b9984acd9c/thumb/50
JavaScript https://gyazo.com/0ab1c31d73d3de3720a607e8b2fba411/thumb/50
macOS https://gyazo.com/590e5570c364a541d3f7a463085f5325/thumb/50
person https://gyazo.com/019165e53b77ea814429cfa3a8c4704f/thumb/50
PHP https://gyazo.com/c15c957e01a0d1ca55f26b5a0cfab0c1/thumb/50
podcast https://gyazo.com/febb89921f5098a4755943fe870c5104/thumb/50
PowerShell https://gyazo.com/cadda54e34eb4b5d9688da9bc168597f/thumb/50
Python https://gyazo.com/6933f5ccb91ae77fd03310ff407dcae7/thumb/50
R https://www.r-project.org/logo/Rlogo.svg
React https://gyazo.com/47ce6e77f039020ee2e76a10c1e988e9/thumb/50
Ruby https://gyazo.com/f007dfd39a3d4cb6d65a53e2e207bead/thumb/50
Scrapbox https://gyazo.com/5f93e65a3b979ae5333aca4f32600611/thumb/50
Visual Studio Code https://gyazo.com/00fe7675a287b417253f1b423bfd58c9/thumb/50
Windows https://gyazo.com/563829b27e0cdb44d229985a254c0672/thumb/50
お気に入り https://gyazo.com/7a457214f1272912148df51d8cdc05f8/thumb/50
スプラトゥーン2 https://gyazo.com/96688c1d28cbc31d275b959f83dcf0da/thumb/50
page-menu