JavaScript Weekly Sponsor Marker

标记sponsor内容,能一眼看出是广告(Reduce the presence of sponsors' content)

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         JavaScript Weekly Sponsor Marker
// @namespace
// @include      *://javascriptweekly.com/issues/*
// @include      *://frontendfoc.us/issues/*
// @version      0.2.0
// @description  标记sponsor内容,能一眼看出是广告(Reduce the presence of sponsors' content)
// @author       ymzhao
// @namespace 
// @license      MIT
// @grant        GM_addStyle
// ==/UserScript==
GM_addStyle(`
    table.el-item:has(.tag-sponsor) {
        background-color: #f3f2f5;
        filter: opacity(0.36) !important;
        transition: filter 0.26s ease;
    }
    table.el-item:has(.tag-sponsor):hover {
        filter: opacity(0.88) !important;
    }
`);