본문 바로가기

일반

파이어폭스(firefox)에서 템퍼몽키(Tampermonkey) 사용법

파이어폭스에서 템퍼몽키(Tampermonkey) 사용법
https://addons.mozilla.org/ko/firefox/addon/tampermonkey/

 

Tampermonkey – 🦊 Firefox용 확장 기능 (ko)

Firefox용 Tampermonkey 부가 기능을 내려받으세요. Tampermonkey is the world's most popular userscript manager.

addons.mozilla.org

 

템퍼몽키 설치이유
https://old.reddit.com  을 사용중에 redgifs.com 의 비디오 클립을 열면, 기본 사운드 옵션이 mute (음소거) 로 되어 있습니다. 그래서 자동으로 unmute 되면 좋겠다고 생각했습니다.
- 검색중에 좋은 스크립트를 발견 했습니다.
- 템퍼 몽키를 설치하면, 특정 웹사이트에서 '유저스크립트'를 실행시킬 수 있습니다. 

// ==UserScript==
// @name         Auto unmute
// @namespace    https://greasyfork.org/en/users/85671-jcunews
// @version      1.0.1
// @license      AGPLv3
// @author       jcunews
// @description  https://www.reddit.com/r/userscripts/comments/lnf8ba/request_auto_unmute_redgifscom_videos/
// @match        https://www.redgifs.com/ifr/*
// @match        https://www.redgifs.com/watch/*
// @grant        none
// ==/UserScript==

(() => {
  (function fn(a) {
    if (a = document.querySelector(".sound-control.muted")) {
      a.click()
    } ;
    setTimeout(fn, 200)
  })()
})();

 

 


위 스크립트를 아래 사진처럼 합니다.

 

 

 

총평

- 이런 좋은 기능이 있군요.

- 잘 작동 됩니다.