>>76>>81に近い記述(もっとシンプルにしたもの)にして http のURLにも対応させたもの
https? と書くとエラーになるので http と https を別々に書かないと通らない
ドメイン名部分を [im]\.imgur\.com とか (?:[im]\.)?imgur\.com と書いてもエラーになる
i.imgur.com, m.imgur.com, imgur.com でそれぞれ http と https の6通りの記述をベタに書くしかない
末尾の $VIEWER は不要なので省いた

^http://i\.imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/
^https://i\.imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/
^http://m\.imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/
^https://m\.imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/
^http://imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/
^https://imgur\.com/(\w{5}(?:\w{2})?)\w?(\.\w+)【TAB】http://i.imgur.com/$1$2【TAB】http://imgur.com/