Finish macOS Share Extension

This commit is contained in:
Maurice Parker
2020-08-14 10:25:55 -05:00
parent ee033398c1
commit eccfd5e15b
6 changed files with 115 additions and 24 deletions

View File

@@ -1,12 +0,0 @@
var SafariExtPreprocessorClass = function() {};
SafariExtPreprocessorClass.prototype = {
run: function(arguments) {
arguments.completionFunction({ "url": document.URL });
}
};
// The JavaScript file must contain a global object named "ExtensionPreprocessingJS".
var ExtensionPreprocessingJS = new SafariExtPreprocessorClass;