mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 01:17:29 +01:00
13 lines
354 B
JavaScript
13 lines
354 B
JavaScript
|
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;
|