Twitterのツイートをはてなブログに埋め込む形式でリストを表示

このスクリプトFirefoxで動作を保証しないものとします
let.hatelabo.jp

// ==UserScript==
// @name         twitter2hatena
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://twitter.com/*/status/*
// @grant        none
// ==/UserScript==
var result = document.evaluate('//div[@class="ProfileTweet-actionList js-actions"]', document, null, 7, null);
result.snapshotItem(0).insertAdjacentHTML('beforeend', '<input type="button" value="登録" id="regist2">');
var result2 = document.evaluate('id("regist2")', document, null, 7, null);
result2.snapshotItem(0).addEventListener('click', sample, false);

function sample() {
  for (var i = 0; i < 128; i++) {
    if (!('tweet' + (i + 1) in localStorage)) {
      if (i == 127) {
        alert("保存できるURLの数は128までに制限しています。\nローカルストレージから登録したキーを削除してください");
        break;
      }
      var cb = list_check(i + 1, location.href);
      if (cb != 1) {
        localStorage.setItem('tweet' + (i + 1), location.href);
        alert("登録しました");
        break;
      } else {
        break;
      }
    }
  }
  //重複削除
  function list_check(lp, n_name) {
    var flag = 0;
    for (var i = 0; i < lp; i++) {
      if (localStorage.getItem('tweet' + (i + 1)) == n_name) {
        alert("このツイートは既に登録されています");
        flag = 1;
        break;
      }
    }
    return flag;
  }
}
//リスト表示処理
var result4 = document.evaluate('//div[@class="ProfileTweet-actionList js-actions"]', document, null, 7, null);
result4.snapshotItem(0).insertAdjacentHTML('beforeend', '<input type="button" value="リスト" id="list2">');
var result5 = document.evaluate('id("list2")', document, null, 7, null);
result5.snapshotItem(0).addEventListener('click', sample2, false);

function sample2() {
  localStorage.setItem("n_url", location.href);
  history.pushState(null, null, "/koko_nanimo_naidesuyo3");
  document.body.innerHTML = "";
  for (var i = 0; i < 128; i++) {
    if ('tweet' + (i + 1) in localStorage) {
      document.body.insertAdjacentHTML('beforeend', '<div>[' + localStorage.getItem('tweet' + (i + 1)) + ':embed]</div>');
    } else {
      break;
    }
  }
  window.addEventListener('popstate', function (event) {
    location.href = localStorage.getItem("n_url");
  });
}

SPOTで記事を探しやすくする

let.hatelabo.jp

// ==UserScript==
// @name         spot_search
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://travel.spot-app.jp/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// @require      http://momentjs.com/downloads/moment.js
// ==/UserScript==
var result6 = document.evaluate('//ul[@class="nav_list"]', document, null, 7, null);
result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<input type="button" id="last_visit" value="訪問確認">');
var result8 = document.evaluate('id("last_visit")', document, null, 7, null);
result8.snapshotItem(0).addEventListener('click', function () {
  var now = moment();
  if (!('last_visit' in localStorage)) {
    localStorage.setItem('last_visit', now);
    alert("現在の時刻をローカルストレージに書き込みました");
  } else {
    if (now.diff(localStorage.getItem('last_visit'), 'days') != 0) {
      alert(now.diff(localStorage.getItem('last_visit'), 'days') + "日前に訪れています");
      localStorage.setItem('last_visit', now);
    } else {
      alert("今日訪れました");
      localStorage.setItem('last_visit', now);
    }
  }
});
result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<select id="pref_name"><option value="">都道府県</option><option value="北海道">北海道</option><option value="青森県">青森県</option><option value="岩手県">岩手県</option><option value="宮城県">宮城県</option><option value="秋田県">秋田県</option><option value="山形県">山形県</option><option value="福島県">福島県</option><option value="茨城県">茨城県</option><option value="栃木県">栃木県</option><option value="群馬県">群馬県</option><option value="埼玉県">埼玉県</option><option value="千葉県">千葉県</option><option value="東京都">東京都</option><option value="神奈川県">神奈川県</option><option value="新潟県">新潟県</option><option value="富山県">富山県</option><option value="石川県">石川県</option><option value="福井県">福井県</option><option value="山梨県">山梨県</option><option value="長野県">長野県</option><option value="岐阜県">岐阜県</option><option value="静岡県">静岡県</option><option value="愛知県">愛知県</option><option value="三重県">三重県</option><option value="滋賀県">滋賀県</option><option value="京都府">京都府</option><option value="大阪府">大阪府</option><option value="兵庫県">兵庫県</option><option value="奈良県">奈良県</option><option value="和歌山県">和歌山県</option><option value="鳥取県">鳥取県</option><option value="島根県">島根県</option><option value="岡山県">岡山県</option><option value="広島県">広島県</option><option value="山口県">山口県</option><option value="徳島県">徳島県</option><option value="香川県">香川県</option><option value="愛媛県">愛媛県</option><option value="高知県">高知県</option><option value="福岡県">福岡県</option><option value="佐賀県">佐賀県</option><option value="長崎県">長崎県</option><option value="熊本県">熊本県</option><option value="大分県">大分県</option><option value="宮崎県">宮崎県</option><option value="鹿児島県">鹿児島県</option><option value="沖縄県">沖縄県</option></select> ');
var result7 = document.evaluate('id("pref_name")', document, null, 7, null);
result7.snapshotItem(0).addEventListener('change', function () {
  var selectedValue = $("#pref_name").val();
  location.href = "https://travel.spot-app.jp/category/" + selectedValue + "/";
});
result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<input type="button" id="sub_search" value="記事検索">');
document.getElementById("sub_search").addEventListener('click', function () {
  var s_word = window.prompt("検索ワードを入力してください", "");
  if (s_word != null) {
    location.href = "https://travel.spot-app.jp/?s=" + s_word;
  }
});
.n_author a {
  font-size: 12px !important;
  color: #444444;
}

#header .header_nav {
  letter-spacing: 0;
}

.header_nav .nav_item a {
  margin: 0 10px;
}

#header .header_nav .nav_list {
  max-width: none;
}

.loop-content-frame {
  opacity: 1;
}

登録したTwitterのアカウントをリストで表示

このスクリプトFirefoxで動作を保証しないものとします
let.hatelabo.jp

// ==UserScript==
// @name         twitter_acc_list
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://twitter.com/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==
//登録処理
var result2 = document.evaluate('id("global-new-tweet-button")', document, null, 7, null);
result2.snapshotItem(0).insertAdjacentHTML('afterend', '<input type="button" value="登録" id="regist">');
var result3 = document.evaluate('id("regist")', document, null, 7, null);
result3.snapshotItem(0).addEventListener('click', sample, false);

function sample() {
  var result = document.evaluate('//link[@rel="canonical"]', document, null, 7, null);
  var n_str = result.snapshotItem(0).href + "/";
  var n_arr = n_str.split("/");
  var acc = n_arr[3];
  if (acc.length == 0) {
    acc = "home_kokokara_hajimaruyo";
  }
  for (var i = 0; i < 128; i++) {
    if (!('user' + (i + 1) in localStorage)) {
      if (i == 127) {
        alert("保存できるURLの数は128までに制限しています。\nローカルストレージから登録したキーを削除してください");
        break;
      }
      var cb = list_check(i + 1, acc);
      if (cb != 1) {
        localStorage.setItem('user' + (i + 1), acc);
        var memo_ran = window.prompt("コメントは何かありますか?", "");
        localStorage.setItem(acc, memo_ran);
        alert("登録しました");
        break;
      } else {
        break;
      }
    }
  }
  //重複チェック
  function list_check(lp, n_name) {
    var flag = 0;
    for (var i = 0; i < lp; i++) {
      if (localStorage.getItem('user' + (i + 1)) == n_name) {
        alert("このページは既に登録されています");
        flag = 1;
        break;
      }
    }
    return flag;
  }
}
//リスト表示処理
var result4 = document.evaluate('id("global-new-tweet-button")', document, null, 7, null);
result4.snapshotItem(0).insertAdjacentHTML('afterend', '<input type="button" value="リスト" id="list">');
var result5 = document.evaluate('id("list")', document, null, 7, null);
result5.snapshotItem(0).addEventListener('click', sample2, false);

function sample2() {
  localStorage.setItem("n_url", location.href);
  history.pushState(null, null, "/koko_nanimo_naidesuyo2");
  document.body.innerHTML = "<ol type=1></ol>";
  var result6 = document.evaluate('//ol', document, null, 7, null);
  for (var i = 0; i < 128; i++) {
    if ('user' + (i + 1) in localStorage) {
      if (localStorage.getItem('user' + (i + 1)) != "home_kokokara_hajimaruyo") {
        if (localStorage.getItem(localStorage.getItem('user' + (i + 1))) != null) {
          result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<li class=line' + (i + 1) + '><img src=https://twitter.com/' + localStorage.getItem('user' + (i + 1)) + '/profile_image?size=mini><a href=https://twitter.com/' + localStorage.getItem('user' + (i + 1)) + '>@' + localStorage.getItem('user' + (i + 1)) + '</a><div>' + localStorage.getItem(localStorage.getItem('user' + (i + 1))) + '</div></li>');
        } else {
          result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<li class=line' + (i + 1) + '><img src=https://twitter.com/' + localStorage.getItem('user' + (i + 1)) + '/profile_image?size=mini><a href=https://twitter.com/' + localStorage.getItem('user' + (i + 1)) + '>@' + localStorage.getItem('user' + (i + 1)) + '</a></li>');
        }
      } else {
        result6.snapshotItem(0).insertAdjacentHTML('beforeend', '<li class=line' + (i + 1) + '>home</li><br>');
      }
    } else {
      document.body.insertAdjacentHTML('beforeend', '<input type=button id=remove value=削除>');
      break;
    }
  }
  var listArray = document.querySelectorAll('li+li');
  for (var a = 0; a < listArray.length; a++) {
    listArray[a].style.marginTop = "1em";
  }
  $(function () {
    $('#remove').click(function () {
      var j = window.prompt("何番目のアカウントを削除しますか?\n半角英数で入力してください。\n入力例は1番から3番を消す場合です", "1-3");
      if (/\-/g.test(j)) {
        var j_sp = j.split("-");
        var j_begin = j_sp[0];
        var j_end = j_sp[1];
        while (j_begin <= j_end) {
          $('.line' + j_begin).css({
            "display": "none"
          });
          j_begin++;
        }
      } else {
        $('.line' + j).css({
          "display": "none"
        });
      }
    }, );
  });
  window.addEventListener('popstate', function (event) {
    location.href = localStorage.getItem("n_url");
  });
}

Youtubeで音量調整が必要そうな場合に警告を表示

// ==UserScript==
// @name         youtube_volume_alert
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youtube.com/watch?v=*
// @grant        none
// ==/UserScript==
var result = document.evaluate('//video', document, null, 7, null);
result.snapshotItem(0).addEventListener('play', function () {
  if (result.snapshotItem(0).volume >= 0.9) {
    alert("音量が90%以上に設定されています");
  } else if (result.snapshotItem(0).volume <= 0.1) {
    alert("音量が10%以下に設定されています");
  }
});

アメブロ旦那観察日記の画像をインスタグラムと同じサイズで表示

let.hatelabo.jp

// ==UserScript==
// @name         mofu_ameblo
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://ameblo.jp/mofu-everyday/entry*
// @match        https://ameblo.jp/mofu-everyday/theme*
// @grant        GM_addStyle
// @grant        GM_getResourceText
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// @require      https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js
// @resource style https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css
// @resource style2 https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css
// ==/UserScript==
var style = GM_getResourceText('style');
GM_addStyle(style);
var style2 = GM_getResourceText('style2');
GM_addStyle(style2);
var result2 = document.evaluate('//div[./a[@href="https://html.co.jp/ha_chu"]]', document, null, 7, null);
result2.snapshotItem(0).insertAdjacentHTML('afterbegin', '<input type="button" value="画像のみ表示" id="gazou">');
document.getElementById("gazou").addEventListener('click', sample, false);

function sample() {
  var result = document.evaluate('//div[@class="skin-entryBody"]//a/img', document, null, 7, null);
  var tmp = [];
  for (var i = 0; i < result.snapshotLength; i++) {
    result.snapshotItem(i).src = result.snapshotItem(i).src.replace("?caw=800", "?caw=600");
    tmp[i] = result.snapshotItem(i).src;
  }
  if (i > 0) {
    document.body.innerHTML = '<div id="slick-box"></div><div id="count"></div>';
    for (i = 0; i < tmp.length; i++) {
      document.getElementById("slick-box").insertAdjacentHTML('beforeend', '<figure><img src=' + tmp[i] + ' title=' + (i + 1) + '/' + tmp.length + '></figure>');
    }
    $(function () {
      $('#slick-box').slick();
      $('#slick-box').on('afterChange', function (slick, currentSlide) {
        var current_slide = $('#slick-box').slick('slickCurrentSlide');
        $('#count').text((current_slide + 1) + "/" + tmp.length);
      });
    });
  }
}
$(function () {
  $('.skin-borderQuiet img').hover(function () {
    $(this).attr('src', $(this).attr('src').replace('?cpd=100', '?cpd=200'));
  }, function () {
    if (!$(this).hasClass('currentPage')) {
      $(this).attr('src', $(this).attr('src').replace('?cpd=200', '?cpd=100'));
    }
  });
});

http://scratchpad.io/next-cows-1097

[data-uranus-component="blogGenreEntryRankInfo"] {
  display: none;
}

[data-uranus-component="entryHead"], [data-uranus-component="entryBody"] {
  margin: 0;
}

.hashtag-module-borderTop, .hashtag-module {
  margin: 0;
  padding: 0;
}

.skin-entryAd {
  display: none;
}

#slick-box {
  width: 660px;
  margin-left: 3%;
}

#count {
  margin-left: 350px;
}

[data-uranus-component="imageFrame"] a:hover img {
  width: 200px !important;
  height: 200px !important;
}

Youtubeの履歴ページに何日前に再生した動画か表示

このスクリプトFirefoxで動作を保証しないものとします
http://let.hatelabo.jp/jigendaddy/let/hJmd56Cuy4Ni.js

// ==UserScript==
// @name         youtube_history_ago
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youtube.com/watch?v=*
// @match        https://www.youtube.com/feed/history
// @grant        none
// @require      https://momentjs.com/downloads/moment-with-locales.js
// ==/UserScript==
//パラメータ削除用関数
function para_del(str) {
  var s_url = str + "&";
  var array_url = s_url.split("&");
  s_url = array_url[0];
  return s_url;
}
//登録処理
var result3 = document.evaluate('id("search-form")', document, null, 7, null);
if (document.getElementById("mark") == null) {
  result3.snapshotItem(0).insertAdjacentHTML('afterend', '<input type="button" value="登録" id="mark">');
}
var result4 = document.evaluate('id("mark")', document, null, 7, null);
result4.snapshotItem(0).addEventListener('click', function () {
  var d_url = location.href;
  var s_url = para_del(d_url);
  if (s_url != "https://www.youtube.com/feed/history") {
    if (window.confirm("アドレスバーに" + s_url + "から始まる文字列が表示されていますか?\n異なる場合はキャンセルを押してください。\nリロードを行います")) {
      localStorage.setItem(s_url, moment().format("YYYY-MM-DD"));
      alert("ローカルストレージにこの動画のキーを登録しました");
    } else {
      location.reload();
    }
  }
});
//検索処理と書き出し
if (document.getElementById("write") == null) {
  result3.snapshotItem(0).insertAdjacentHTML('afterend', '<input type="button" value="表示" id="write">');
}
var result5 = document.evaluate('id("write")', document, null, 7, null);
result5.snapshotItem(0).addEventListener('click', function () {
  var result = document.evaluate('//div[@id="title-wrapper"]//a[@id="video-title"]', document, null, 7, null);
  var result2 = document.evaluate('//ytd-video-renderer//div[@id="metadata-line"]', document, null, 7, null);
  var flag = 0;
  for (var i = 0; i < result.snapshotLength; i++) {
    var n_url = result.snapshotItem(i).href;
    var nr_url = para_del(n_url);
    if (nr_url in localStorage) {
      if (flag != 1) {
        var loop = i + 1;
      }
      var to = moment();
      var from = moment(localStorage.getItem(nr_url), "YYYY-MM-DD");
      if (moment(from).fromNow() != moment().startOf('day').fromNow()) {
        if (to.diff(from, 'day') == 1) {
          result2.snapshotItem(i).insertAdjacentHTML("afterbegin", to.diff(from, 'day') + " day ago ");
        } else {
          result2.snapshotItem(i).insertAdjacentHTML("afterbegin", to.diff(from, 'day') + " days ago ");
        }
      } else {
        result2.snapshotItem(i).insertAdjacentHTML("afterbegin", "Today ");
      }
      flag = 1;
    }
  }
  alert("最後に登録したのは" + loop + "本前に見た動画です");
});

インスタグラムで複数投稿の場合投稿数を表示

このスクリプトインスタグラムで黒背景の段階を飛ばすgresemonkeyスクリプトと併用することをお勧めします

// ==UserScript==
// @name         insta_count
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.instagram.com/p/*
// @grant        none
// ==/UserScript==
var result = document.evaluate('//div[not(./node())][./following-sibling::div[not(./node())] or ./preceding-sibling::div[not(./node())]]', document, null, 7, null);
if (result.snapshotLength > 1) {
  alert("This post contains " + result.snapshotLength + " photos or videos.");
}