<p>Not that I know of. Maybe get a script or something?
</p><p>How about going to
User:Gsimenas/Wikia.js and adding the following:
</p>
$(document).ready(function() {
if(wikiaPageType == "article") {
PurgeButton = document.createElement("li")
PurgeButton.innerHTML = "<a href=\"/wiki/"+wgPageName+"?action=purge\">Purge</a>"
$("#WikiaMainContentContainer .wikia-menu-button .WikiaMenuElement")[0].appendChild(PurgeButton)
}
})
<p>It should add a "Purge" link to the drop-down menu next to your edit button. If that's not good enough, I can probably change it to show up next to your edit button instead.
</p>