IMDB Score Hider

Hides all TV and movie scores from IMDB.

目前为 2015-04-20 提交的版本。查看 最新版本

// ==UserScript==
// @name       IMDB Score Hider
// @namespace  http://cyph0n.tumblr.com/
// @version    0.0.2
// @description  Hides all TV and movie scores from IMDB.
// @match      http://www.imdb.com/title/*
// @copyright  2012+, Cyph0n
// @require    http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// ==/UserScript==

// If movie title is clicked, toggle the ratings.
$('h1.header').click(function() {
    toggleRatings();
});

function toggleRatings()
{
    // Hide main rating for current movie
    $('.star-box-giga-star').toggle();
    $('.star-box-details').toggle();

    // Hide rating for related movies
    $('.rating-list').toggle();
}

// Hide rating on page load.
toggleRatings();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址