try to take over the world!
当前为
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://voice.google.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector('header').style.backgroundColor = '#090909';
document.querySelector('.gb_ne').style.background = "none"
// Your code here..
})();