Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CanYouJustWorkPlease/308b98dff5544fbba9037487504044bd to your computer and use it in GitHub Desktop.
Save CanYouJustWorkPlease/308b98dff5544fbba9037487504044bd to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Auto click Youtube mobile "Tap to unmute" button
// @namespace http://m.youtube.com/
// @version 0.1
// @description -
// @author CanYouJustWorkPlease
// @match https://m.youtube.com/*
// @icon https://www.youtube.com/favicon.ico
// @run-at document-end
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#movie_player > button > div > div.ytp-unmute-text").click()
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment