Greasemonkey 使用跨度 ID 和文本关闭选项卡

Greasemonkey close tab using span ID and text

我有这个脚本,如果它在页面上找到某个元素,它会关闭一个选项卡:

// ==UserScript==
// @name        Name
// @namespace   bbb
// @match       https://example.com
// @include     about:config
// @version     1
// @grant       none
// ==/UserScript==



var intv = setInterval(function() {
 
if (/(container)|(mediumheight)/i.test (document.body.innerHTML) )

{
    window.close()
}
 
    }, 1000);

如果它找到这个,我怎样才能让它关闭页面:

<span id="some">0</span>

但它必须同时检查 id (some) 和号码 (0)。两者都必须在页面上才能触发脚本。

如果只是 id(一些)我可以做到,但我需要两者都为真才能触发脚本。

有人可以帮忙吗?谢谢

<span id="some">0</span> 

But it has to check for both the id (some) and for the number (0). Both must be on the page for the script to fire.

以下是您如何检查它的示例:

const sp = document.querySelector('#some'); // find id (some)
if (sp && sp.textContent === '0') {
 // run the function
}