본문 바로가기

컴퓨터 팁

파이어폭스에서 유튜브 채널 동영상 바로 보기

파이어폭스 부가기능에 Greasemonkey 를 추가하고, 아래의 스크립트를 추가한다.


// ==UserScript==
// @name        Youtube
// @namespace   Youtube
// @description Youtube
// @include     *://*.youtube.com/channel/*
// @exclude     *://*.youtube.com/channel/*/videos
// @version     1
// @run-at document-start
// ==/UserScript==

var link = location.href;
location.href = link+"/videos";