mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-04-14 04:30:22 +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;
|