使用 Firefox 在特定域上显示警告

使用 Firefox 在特定域上显示警告

使用 Firefox 87,我希望在访问特定网站或域时收到某种警告。就像家长控制一样,只不过它不会屏蔽内容,而是给我一个视觉反馈,告诉我我位于我列表中的域中。

就上下文而言,我正在使用 Qt 6 进行开发,在寻求帮助时经常会查阅 Qt 5 文档(https://doc.qt.io/qt-6/对比https://doc.qt.io/qt-5/) 有时(但并非总是)被弃用。所以我想很容易地知道我正在寻找的页面不是 Qt6

答案1

您可以使用此插件根据 URL 添加一些自定义 CSS:

https://addons.mozilla.org/en-GB/firefox/addon/custom-style-script/

例如:

已填入参数的插件选项页面

if (document.URL.includes("qt-5")) {
    var css = 'body { background: red; }',
    head = document.head || document.getElementsByTagName('head')[0],
    style = document.createElement('style');

    head.appendChild(style);

    style.type = 'text/css';
    style.appendChild(document.createTextNode(css));
}

相关内容