Highlight Oculus Rift games on Humble Store

Highlights games that supports the Oculus Rift on the Humble Store, so that you don't have to hover over the 'platforms' icon to know which games have a VR mode

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Highlight Oculus Rift games on Humble Store
// @namespace   org.olemartin.oculus-rift-highlight
// @description Highlights games that supports the Oculus Rift on the Humble Store, so that you don't have to hover over the 'platforms' icon to know which games have a VR mode
// @include     https://www.humblebundle.com/store*
// @version     1
// @grant       none
// ==/UserScript==

(function ($) {

    var highlighter = function () {
        $('.storefront-list-product .hb-oculus')
            .closest('.storefront-list-product')
            .css({background: '#a3e5b4'});
    };
    
    $(document).ajaxSuccess(highlighter).ready(highlighter);
    
})(jQuery);
长期地址
遇到问题?请前往 GitHub 提 Issues。