nightdev聊天擷取的方式很早以前就死去了
最近streamlab的chatbox也有問題
所以我從最根本的方式去解決
用CLR 直接擷取twitch的聊天室 更動CSS樣式
以下感謝Seakas的協助 完成Classic CLR也可以擷取的方式
1.
打開你自己的twitch頻道
http://imgur.com/a/zLL5K
點聊天室的齒輪(不要點我齒輪 拜託QQ)
會看到跳出視窗 如同圖片中的紅框顯示
2.
http://imgur.com/a/SXmkw
跳出的視窗上方會有網址
複製下來
3.
http://imgur.com/a/9hDKE
貼到CLR裡面的URL裡面
4.
進到下面我分享的css檔案 複製貼上CSS就可以使用了
https://drive.google.com/file/d/0B8Kf9Oy7K9sDakJCaTlkV2NaOXc/view?usp=sharin
<3 p="">或是直接複製以下的文字
::-webkit-scrollbar, .chat-interface{
visibility: hidden; } /*背景透明, 字型設定, 字體加粗(關閉), 字體顏色(最適合老K的粉紅), 八向陰影(文字邊框)*/ body { background: rgba(0, 0, 0, 0) !important; /*font-family: 微軟正白體 !important;*/ /*聊天室文字字型*/ /*font-family: 微軟正黑體 !important; */ /*font-weight: bold !important;*/ font-weight: 700 !important; /*聊天室文字粗細,900為最粗*/ color:#ffffff !important; text-shadow: 1px 0 0 #444, -1px 0 0 #444, 0 1px 0 #444, 0 -1px 0 #444, 1px 1px #444, -1px -1px 0 #444, 1px -1px 0 #444, -1px 1px 0 #444; !important; } .pinned-cheer__top-bar { display:none !important; } /* 隱藏功能與對話區塊 */ .chat-header, .chat-interface .tse-scrollbar{ display:none !important; } /* 底色透明化 */ .chat-container, .ember-chat-container{ background: rgba(0, 0, 0, 0) !important; } /* 訊息欄:最小寬度, 至頂, 至底, 文字大小 */ .ember-chat, .chat-room, .chat-messages, .chat-line{ min-width: 100px !important; top: 0px !important; bottom: 0px !important; font-size: 14px !important; padding: 3px 6px !important; /*line-height: 1.30em !important;*/ /*聊天室文字行高,1.05倍行高*/ /*padding: .05em .05em !important;*/ /*聊天室文字與前後段距離,0.05倍行高*/ }