/*
* @title Wizball の詳細ページで質問投稿日時を表示する
* @description Wizball の詳細ページで質問投稿日時を表示する
* @include https://wizball.io/questions/*
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url *
*/
(_ => {
if (location.hostname != "wizball.io" || ! /^\/questions\/\d+/.test(location.pathname)) {
return;
}
const m = /^\/questions\/(\d+)/.exec(location.pathname);
if (m) {
fetch("/apis/v1/questions/" + m[1])
.then(resp => resp.json())
.then(json => {
const d = new Date(json.createdAt);
const e = document.querySelector(".profile_info_area > .date");
e.innerHTML = d.toLocaleString();
});
}
})();