Bookmarklet

「漫画の新聞」の記事ページに日付と思われる文字列を挿入する

記事日付の記載がないのって新聞の記事としてどうなんでしょうか。 location.href.match("http://newsmanga\.com/.+?/(\\d{4})(\\d{2})(\\d{2})"); var date = document.createElement("p"); date.textContent = RegExp.$1 + "-" + RegExp.$2 + "-" + RegExp…