Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Facebook Profile Cleaner

[es] :: Web aplikacije :: Facebook Profile Cleaner

[ Pregleda: 4712 | Odgovora: 4 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

Goran Mijailovic

Član broj: 12684
Poruke: 6907



+437 Profil

icon Facebook Profile Cleaner19.02.2009. u 13:41 - pre 184 meseci
Evo ga konacno Facebook Profile Cleaner, skripta bi trebala da otklanja sve namenske aplikacije kao i druge funkcije Facebooka koje vam se ne dopadaju.

http://tech.karbassi.com/2007/08/27/facebook-profile-cleaner/

Potrebno je prethodno instalirati ekstenziju za FF Greasemonkey:
https://addons.mozilla.org/en-US/firefox/addon/748

PS
valjda sam potrefio forum.

 
Odgovor na temu

Goran Mijailovic

Član broj: 12684
Poruke: 6907



+437 Profil

icon Re: Facebook Profile Cleaner19.02.2009. u 14:14 - pre 184 meseci
Code:
// Facebook Profile Cleaner
//
// Version 1.0
//
// Date Written: 2007-08-26
//
// Copyright (c) 2007, Ali Karbassi
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Facebook Profile Cleaner", and click Uninstall.
//
// --------------------------------------------------------------------
//
// WHAT IT DOES:
// After the facebook profile page is loaded, it finds all the 
// applications that are not in the list below and 'removes' them. By
// remove, I mean, not display them. 
//
// NOTE: This does not alter, delete, edit, add, or anything else to
//       your facebook profile. Just remove or disable this script and
//       everything will be displayed the same as it used to
// --------------------------------------------------------------------
//
// ==UserScript==
// @name           Facebook Profile Cleaner
// @namespace      http://tech.karbassi.com/
// @description    Removes applications from all profiles. Clean out
//                 all those annoying applications people add. This
//                 script will remove all the applications (plus
//                 others if specified) from any facebook profile
//                 you view.
// @include        http://*.facebook.com/*
// ==/UserScript==

// Comment out the ones you don't want displayed
// Note: This list is the 'original' apps
var AppsToKeep =
    [
        'box_app_2407511955',    // Mutual Friends
        'box_app_2356318349',    // Local Network Friends
        //'box_app_2503140832',    // Friends in Other Networks
        'box_app_2305272732',    // Photos
        //'box_app_2347471856',    // Notes
        //'box_app_2361831622',    // Groups
        //'box_app_2341989679',    // Mini-Feed
        'box_app_2327158227',    // Information
        'box_app_2297529396',    // Education and Work
        //'box_app_2386512837',    // Gifts
        'box_app_2719290516',    // The Wall
    ];

// Only use when debugging. Default: false
// Note: Requires FireBug
var debug = false;





// DO NOT EDIT
// Well, unless you know what you're doing

Array.prototype.inArray = function (value)
{
    var i = this.length;
    while( i-- )
    {
        if( this[i] === value )
        {
            return true;
        }
    }
    return false;
};

pageDivs = document.getElementsByTagName('div');

// Delete application divs
for(var i = 0; i < pageDivs.length; i++)
{
    var id = pageDivs[i].id;
    if( ( id.indexOf( 'box_app_' ) === 0 ) && ( !AppsToKeep.inArray( id ) ) )
    {
        pageDivs[i].style.display = 'none';
    }
}
 
Odgovor na temu

kvaju

Član broj: 168744
Poruke: 517
77.221.0.*



+16 Profil

icon Re: Facebook Profile Cleaner19.02.2009. u 15:51 - pre 184 meseci
Nisam dosada koristio ovaj addon, gdje treba paste-ati ovaj code?
 
Odgovor na temu

Goran Mijailovic

Član broj: 12684
Poruke: 6907



+437 Profil

icon Re: Facebook Profile Cleaner19.02.2009. u 16:29 - pre 184 meseci
Imas sve u prvom linku.
 
Odgovor na temu

Goran Mijailovic

Član broj: 12684
Poruke: 6907



+437 Profil

icon Re: Facebook Profile Cleaner14.03.2009. u 12:28 - pre 183 meseci
Link za brisanje naloga:

http://www.facebook.com/help/contact.php?show_form=delete_account

*rekao sam brisanje ne deaktivacija, nemoj da bi bilo kakvih problema posle
 
Odgovor na temu

[es] :: Web aplikacije :: Facebook Profile Cleaner

[ Pregleda: 4712 | Odgovora: 4 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.