mirror of
https://github.com/wallabag/ios-app.git
synced 2026-05-19 15:10:34 +00:00
14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
var ExtensionClass = function() {};
|
|
|
|
ExtensionClass.prototype = {
|
|
run: function(arguments) {
|
|
arguments.completionFunction({
|
|
"href": document.location.href,
|
|
"contentHTML": document.body.innerHTML,
|
|
"title": document.title.toString()
|
|
});
|
|
}
|
|
};
|
|
|
|
var ExtensionPreprocessingJS = new ExtensionClass;
|