Replace Youtube Logo Country code
目前為
// ==UserScript==
// @name Replace Youtube Country-code
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Replace Youtube Logo Country code
// @author Kotoki1337
// @match https://www.youtube.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#country-code").innerHTML = "You Country"
})();