ウィキペディアのURLをcurid式に
by
Lhankor_Mhy
2020-06-15 [2020/06/15 13:09:38]
https://ja.wikipedia.org/?curid= に移動します。
@@ -12,5 +12,5 @@
const tmp = document.createElement('div');
tmp.innerHTML = await ((await fetch(location.href+'?action=info')).text());
const curid = tmp.querySelector('#mw-pageinfo-article-id td:nth-child(2)').textContent;
- location.href=`https://ja.wikipedia.org/?curid=${curid}`;
+ location.href='https://ja.wikipedia.org/?curid='+curid;
})()
/*
* @title bookmarklet
* @description my bookmarklet
* @include https://ja.wikipedia.org/wiki/*
* @license MIT License
* @require
* @javascript_url
*/
(async ()=>{
const tmp = document.createElement('div');
tmp.innerHTML = await ((await fetch(location.href+'?action=info')).text());
const curid = tmp.querySelector('#mw-pageinfo-article-id td:nth-child(2)').textContent;
location.href='https://ja.wikipedia.org/?curid='+curid;
})()
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。