gpt4 book ai didi

javascript - Tampermonkey - 匹配默认起始页

转载 作者:行者123 更新时间:2023-11-29 15:23:09 24 4
gpt4 key购买 nike

我尝试删除 Chrome 起始页上最后查看的页面的 8 个图 block 。您知道,启动 Chrome 时出现的页面。

但是因为根本没有 URL,所以我不知道我必须在@match 中输入什么。我试过 //@match * 但脚本没有执行。

// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *
// @grant none
// ==/UserScript==

(function() {
'use strict';

setInterval(function(){
var box = document.getElementById("mv-tiles");
box.remove();
},10
);
})();

最佳答案

使用@include代替@match

此外,可以通过转到控制台并运行 window.location.href

来获取 URL

我试过了,它成功了:

// @include      http*://*chrome/newtab*

也许不要在那里使用间隔,因为一旦元素不再存在,它就会继续抛出错误。

我会使用这样的东西:

injectStyles('#mv-single {display: none;}');

function injectStyles (styles) {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = styles;
document.head.appendChild(style);
}

关于javascript - Tampermonkey - 匹配默认起始页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41823586/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com