Лучше классом делать.
(function(window) {
window.MyPlugin = function(element) {
this.element = element;
}
myPlugin.prototype.myMethod = function() {
//...
}
})(window);
var elem = document.getElementById('elem');
var test = new MyPlugin(elem);
test.myMethod();