bing video

Inject custom CSS into webpages

目前為 2025-05-30 提交的版本,檢視 最新版本

// ==UserScript==
// @name         bing video
// @description  Inject custom CSS into webpages
// @match    https://www.bing.com/videos/search?*
// @version 0.0.1.20250530135908
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.textContent = `
        * {
            min-width: unset !important;
        }
    `;
    document.head.appendChild(style);
})();