MovieChat.org on IMDb - Companion Script

Remove grey sidebars on MovieChat.org when using drhouse's script.

目前為 2017-05-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         MovieChat.org on IMDb - Companion Script
// @version      1.10
// @description  Remove grey sidebars on MovieChat.org when using drhouse's script.
// @author       RandomUsername404
// @match        https://moviechat.org/*
// @exclude      https://moviechat.org/
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @run-at       document-start
// @grant        none
// @icon         http://moviechat.org/favicons/favicon.ico
// @namespace https://greasyfork.org/users/105361
// ==/UserScript==

$(document).ready(function() {   
    var width = $(window).width();

    // If current width <= 770px :
    if(width <= 770)
    {
        $('.container').css('padding-right', '0px');
        $('.container').css('padding-left', '0px');
        $('.container').css('margin-right', '0');
        $('.container').css('margin-left', '0');
        $('.container').css('width', '100%');
        
        // Move the logo slightly on the right :
        $('#logo').css('margin-left', '1em');
        
        // Reduce the top-bar size :
        $('.col-md-12').css('height', '4.8em');
        $('.navbar').css('height', '4.8em');
        $('.container').css('margin-top', '-0.7em');
        
        // Hide the description and add a button to display it when requested :
        var descriptionButton = $('<input type="button" value="Overview" id="despBtn" class="btn btn-yellow btn-block" onclick="this.blur();"/>');
        descriptionButton.insertBefore($(".movie-overview"));
        $(".movie-overview").hide();
        
        $("#despBtn").click(function(){
        $(".movie-overview").toggle();
        });
        
        // Make the author's name visible :
        $(".col-xs-3").removeClass('hidden-xs');
        
        // TO DO : vertically center Title and Replies        
        
    }
    
    
    
})();