-
-
Save jrgifford/1677724 to your computer and use it in GitHub Desktop.
abandoned user script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name LookAtMeImADuplicate | |
// @author rlemon, jamesgifford | |
// @version 0.1 | |
// @namespace rlemon.com | |
// @description Flag SE Questions as Duplicates | |
// @include http://*stackoverflow.com/* | |
// @include http://*superuser.com/* | |
// @include http://*serverfault.com/* | |
// @include http://*askubuntu.com/* | |
// @include http://*stackapps.com/* | |
// @include http://*.stackexchange.com/* | |
// @include http://answers.onstartups.com/* | |
// ==/UserScript== | |
function EmbedCodeOnPage(kode) { | |
var elm = document.createElement('script'); | |
elm.textContent = kode; | |
document.head.appendChild(elm); | |
} | |
function EmbedFunctionOnPageAndExecute(fn) { | |
EmbedCodeOnPage("(" + fn.toString() + ")()"); | |
} | |
EmbedFunctionOnPageAndExecute(function() { | |
$(document).on('ajaxComplete', function() { | |
var new_option_link = $('<a>', { | |
'text': 'I\'m a Duplicate!', | |
'click': function() { | |
$('.action-subform.mod-attention-subform textarea').val('Duplicate!'); | |
$('.action-subform.mod-attention-subform input[name=prefilled]').trigger('click'); | |
} | |
}), | |
new_option = $('<li>'); | |
new_option.append(new_option_link); | |
$('.action-subform.mod-attention-subform ul').append(new_option); | |
}); | |
}); | |
EmbedFunctionOnPageAndExecute(function() { | |
$(document).on('ajaxComplete', function() { | |
var new_option_link = $('<a>', { | |
'text': 'I\'m a Abandoned!', | |
'click': function() { | |
$('.action-subform.mod-attention-subform textarea').val('Abandoned!'); | |
$('.action-subform.mod-attention-subform input[name=prefilled]').trigger('click'); | |
} | |
}), | |
new_option = $('<li>'); | |
new_option.append(new_option_link); | |
$('.action-subform.mod-attention-subform ul').append(new_option); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment