Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created February 20, 2014 02:19
Show Gist options
  • Select an option

  • Save Akkiesoft/9105843 to your computer and use it in GitHub Desktop.

Select an option

Save Akkiesoft/9105843 to your computer and use it in GitHub Desktop.
キモいアイコンとかグロいアイコンとかを、清らかなアイコンに差し替えて精神衛生を保つプラグインになる予定
# -*- coding: utf-8 -*-
Plugin.create(:mikutter_iconbyebye) do
alternative = File.join(File.dirname(__FILE__), 'alternative.png').freeze
byebyelist = UserConfig[:iconbyebye_sn]
filter_web_image_loader_url_filter do |url|
if url.include? 'toshia.dip.jp'
[url]
else
# urlからSNを取り出す処理をここに書く
# sn = ***
#if byebyelist.include? sn
# [alternative]
#else
[url]
end
end
settings "アイコンバイバイ" do
multi "アイコンを見たくないユーザーのスクリーンネーム", :iconbyebye_sn
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment