Forked from penguin2716/gray_protected_users.rb
Last active
September 30, 2016 14:50
-
-
Save pocke/6971b80b28b1da0373c9 to your computer and use it in GitHub Desktop.
鍵垢のツイート背景をグレーにするmikutterプラグイン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
Plugin.create :gray_protected_users do | |
UserConfig[:protected_users_background_color] ||= [0xcccc,0xcccc,0xcccc] | |
filter_message_background_color do | mp, array | | |
if mp.message.user[:protected] == true && !Service.services.map(&:user).include?(mp.message.user.idname) | |
array = UserConfig[:protected_users_background_color] | |
end | |
[mp, array] | |
end | |
settings("Protected_Users_Color") do | |
color("鍵付きユーザの背景色",:protected_users_background_color) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
自分自身を灰色にしない