This file contains hidden or 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
// ==UserScript== | |
// @name Hangouts Rightside Chatting | |
// @version 0.1 | |
// @description Make Google Hangouts chatting window to fit in right side of the screen | |
// @author ERT (@ERT_Hagalz on Twitter) | |
// @updateURL https://gist.github.com/ERT-Kim/306b2f56835f9f70f2c0e4eaf8e7a2a0/raw/Hangouts_Rightside_Chatting.user.js | |
// @downloadURL https://gist.github.com/ERT-Kim/306b2f56835f9f70f2c0e4eaf8e7a2a0/raw/Hangouts_Rightside_Chatting.user.js | |
// @match https://hangouts.google.com/call/* | |
// @grant none | |
// @run-at context-menu |
This file contains hidden or 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
/* | |
* 행아웃 채팅창을 오른쪽으로 옮겨주는 스크립트입니다. Written by ERT(@ERT_Hagalz on Twitter) | |
* @Monpolang님이 작성하신 코드를 개량해 작성하였습니다. | |
* @Monpolang님의 코드 작성 게시물 : https://twitter.com/monpolang/status/1242376877437644801 | |
* @Monpolang님의 jsfiddle : https://jsfiddle.net/mL736t05/2/ | |
* 사용법 | |
* 행아웃 입장 후, 행아웃을 켜놓은 창에서 F12 혹은 우클릭->검사 혹은 Ctrl+Shift+I 를 눌러 검사창을 열고 | |
검사창 상단 메뉴에서 Console 버튼을 눌러 나오는 창에 아래 코드를 복사-붙여넣기한 후 엔터키를 눌러 실행합니다. | |
* Console 창에서 아무 코드나 실행할 경우 해킹에 노출될 수 있으니 주의하세요. | |
본 코드는 스타일 속성만을 수정하므로 별다른 문제는 발생하지 않습니다. |
This file contains hidden or 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
// ======================================================================= | |
// DX3rd Dice Roll API Script w/ Result Table using QuantumRoll | |
// Written by ERT (Twitter: @ERT_Hagalz) | |
// Acknowledgement | |
// - RegExp matching inspired by the previous work of Zetetic L. | |
// (https://gist.github.com/MeowLKW/28b3f372740b73c56c666e82ba7a7bdc) | |
// ======================================================================= | |
on("chat:message", function(msg) { | |
if(msg.type == "api" && msg.content.indexOf("!sr ") !== -1) { |