添加扩展应用

This commit is contained in:
ylzheng
2015-10-30 21:43:54 +08:00
parent f36262d324
commit 74ce9ab18b
14 changed files with 337 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
var LibrmeExtension = function() {};
LibrmeExtension.prototype = {
run: function(arguments) {
arguments.completionFunction({"baseURI" : document.baseURI});
}
}
var ExtensionPreprocessingJS = new LibrmeExtension;