|
| 06 Jun 2014 04:08 AM |
your siggy extension seems sort of easy..
the base is just
document.getElementById("whateverthetextboxis").innerHTML = "idk"
if im wrong idc lol i havent used javascript in ages. |
|
|
| Report Abuse |
|
Dakota99
|
  |
| Joined: 30 Aug 2007 |
| Total Posts: 11628 |
|
|
| 06 Jun 2014 04:09 AM |
I've posted the source several times. Here it is again:
var elves = document.getElementById('ctl00_cphRoblox_Createeditpost1_PostForm_PostSubject'); var invischar=String.fromCharCode(157) var splitter="-" var sigs=[ "zu'u tinvaak dovahzul", "hi, i'm dakota99", "facedeskflip", "%randomsig%", "because i'm manly ok", "rip 60-char titles", "dakota99 is awesome", "borrow my knife in your stomach", "generic threat", "wizards r evil", "once upon a time", "times like these", "coolest rter", "randomsig(tm)", "now with 100% more sig", "my sig > your sig", "this sentence is false", "uh oh, more sigs", "so many sigs", "much sig wow", "sigtastic", "sig #21", "50% of my sigs include the word sig", "beep boop", "i program things", "programming is fun", "evil laughter", "maniacal laughter", "i died from laughing", "if you take this seriously you're an idiot", "you are part of the problem", "you know too much", "don9 pls", "i taught myself SIG++", "404 error: sig not found", "foruming", "gg, no re", "not the face", "i'm so good at programming", "headspinflipdeskeatcake", "gotta paste them all", "what's the point of sigs", "randomaccess", "randomsig: now 50% off for never", "sig.exe", "snipper no snipping", "snip, snip, snip", "pew pew, pew pew pew", "chairs are four hipsters", "do u evn dovahzul", "super cool", "leader of a war clan", "failure", "victory", "yes", "no", "maybe", "do you remember farm tycoon", "always remember meelo", "always remember fleskhjerta", "always remember scripter", "always remember uberubert", "always remember dignity", "always remember jj5x5", "always remember those whom we have lost" ] function repeat(s, n){ var a = []; while(a.length < n){ a.push(s); } return a.join(''); } function random (min, max) { return Math.random() * (max - min) + min; } function getString(n) { var a=[]; while (a.length < n) { a.push(String.fromCharCode(random(48,57))); } return a.join(''); } function getStringb(n) { var a=[]; while (a.length < n) { a.push(String.fromCharCode(random(65,122))); } return a.join(''); }
var el = document.getElementById('ctl00_cphRoblox_Createeditpost1_PostForm_PostBody'); if(!el){ el = document.getElementById('wmd-input'); } if (el) { chrome.extension.sendRequest({ method: "getSiggy" }, function(response) { var sig = response.status; // RandomSig if (el.value.search(sig) == -1) { var sig=sigs[Math.floor(Math.random() * sigs.length)]; var MEEM=sig+" | twitter.com/sScriptis | RandomString: "+getStringb(5) SemiSplit=repeat(splitter,Math.ceil((MEEM.length)/2)) el.value = el.value + "\n\n\n\n"+SemiSplit+""+SemiSplit+"\n"+MEEM; } if (el.setSelectionRange) el.setSelectionRange(0, 0); else if (el.createTextRange) { var range = el.createTextRange(); range.collapse(true); range.moveStart('character', 0); range.moveEnd('character', 0); range.select(); } }); }
|
|
|
| Report Abuse |
|
UNWARY
|
  |
| Joined: 09 Oct 2011 |
| Total Posts: 121244 |
|
| |
shooter06
|
  |
| Joined: 13 Jan 2011 |
| Total Posts: 7443 |
|
| |