O que é o script Ask Ubuntu Clean Up?

3

como e onde o script está instalado?

// ==UserScript==
// @name           Ask Ubuntu Clean Up
// @namespace     http://userscripts.org/users/217436
// @include     http://cleanup.thepcspy.com/*
// @include     http://askubuntu.com/*
// @include     http://www.askubuntu.com/*
// ==/UserScript==

var script = document.createElement("script");
script.textContent = "(" + function() {
    if (window.location.hostname.indexOf("cleanup.thepcspy.com") != -1)
        return $('#barbanner').hide();

    $('head').append('<link rel="stylesheet" href="http://cleanup.thepcspy.com/media/external.css" type="text/css" />');
    $('#custom-header').after('<div id="aucuholder" class="container"></div>');

    $.getJSON('http://cleanup.thepcspy.com/?callback=?', function(data){
        $('#aucuholder').html(data);
        $('#aucuopen').click(function(){$('#aucuqs').toggle();return false;})
    });
}.toString() + ")();";
document.body.appendChild(script);
    
por Ringtail 24.02.2012 / 03:17

1 resposta

4

Parece um script Greasemonkey . Você pode instalá-lo aqui:

link

Quando a extensão estiver instalada, clique no link "Instalar o UserScript" no site de limpeza, para instalar.

    
por James Henstridge 24.02.2012 / 03:27

Tags