mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
13 lines
371 B
JavaScript
13 lines
371 B
JavaScript
var ShareExtension = function() {};
|
|
|
|
ShareExtension.prototype = {
|
|
run: function(arguments) {
|
|
arguments.completionFunction({
|
|
'url': window.location.href,
|
|
'title': document.title.toString(),
|
|
'documentHTML': new XMLSerializer().serializeToString(document),
|
|
});
|
|
}
|
|
};
|
|
|
|
var ExtensionPreprocessingJS = new ShareExtension();
|