mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-01-11 22:40:20 +00:00
7 lines
181 B
JSON
7 lines
181 B
JSON
var GetURL = function() {};
|
|
GetURL.prototype = {
|
|
run: function(arguments) {
|
|
arguments.completionFunction({"URL": document.URL});
|
|
}
|
|
};
|
|
var ExtensionPreprocessingJS = new GetURL;
|