Skip to content

Instantly share code, notes, and snippets.

@t-yamo
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t-yamo/7fe746776376e787cbb6 to your computer and use it in GitHub Desktop.
Save t-yamo/7fe746776376e787cbb6 to your computer and use it in GitHub Desktop.
アメブロの「腹い」「なかい」を削除するUserScriptです。ameblo_onaka_ippai.user.jsとかのファイル名でUTF-8で保存し、Chromeの設定→拡張機能のところにドラッグアンドドロップすると有効になります。
// ==UserScript==
// @name AmebloOnakaIppai
// @include http://ameblo.jp/*
// ==/UserScript==
document.body.innerHTML = document.body.innerHTML.replace(/腹い|なかい/g, "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment