sbquote
by
yuta25
2022-08-17 [2022/08/17 18:57:53]
Scrapboxに貼りやすいように選択中のテキストをクリップボードにコピー
/*
* @title sbquote
* @description Scrapboxに貼りやすいように選択中のテキストをクリップボードにコピー
* @include http://*
* @license MIT License
* @require
* @javascript_url
*/
(async () => {
focus();
const quote = window.getSelection().toString();
const url = window.location.href;
const title = document.title || document.querySelector('meta[property="og:title"]').content || '';
const text = `
> ${quote}
> [${url} ${title}]
`;
await navigator.clipboard.writeText(text);
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。