Sorry, there are no scripts tagged googleimagesearch;highly_rated

MySpace - Private Pictures Dead End

By InsaneNinja Last update Dec 12, 2007 — Installed 9,599 times. Daily Installs: 11, 8, 4, 11, 4, 13, 13, 7, 8, 4, 8, 10, 2, 5, 5, 6, 2, 1, 7, 7, 0, 4, 6, 4, 11, 8, 6, 14, 7, 15, 8, 5
// ==UserScript==
// @name           MySpace - Private Pictures Dead End
// @namespace      http://userscripts.org/people/774
// @description    2007/09/12 - Adds a link back to the profile from a dead end "view photos" page of a private profile. Useful with any script that links you direct to a person's photo page.
// @include        http://viewmorepics.myspace.com/index.cfm?fuseaction=user.view*&friendID=*
// ==/UserScript==

if (
    document.getElementById('home_maintenance') 
    && document.getElementById('ctl00_Main_Unavailable1_ErrorMessageLabel')
    && (friendid = document.location.href.match(/friendid=([0-9]+)/i)[1])
    )
{
  document.getElementById('ctl00_Main_Unavailable1_ErrorMessageLabel').innerHTML +=
    '<p><a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid='
    +friendid
    +'">Click here to go back to the profile.</a></p>'

    +'<br><p><a href="http://userscripts.org/scripts/show/12411"'
    +' style="color:CCCCCC; font-size: 7pt;">'
    +'Click for this GM script\'s page.</a></p>';

  document.title = 'Private Pictures';
}