Update chrome.js
Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
Namhyeon Go 2024-09-04 20:17:55 +09:00 committed by GitHub
parent 38288153ed
commit 0eb897b07f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1351,6 +1351,10 @@ var ChromeObject = function() {
return ".querySelector('" + selectors.join(s) + "')";
};
this.requestFullscreen = function() {
this.evaluate('document.documentElement.requestFullscreen();');
};
this.create();
};
ChromeObject.prototype = new STD.EventTarget();
@ -1419,7 +1423,7 @@ exports.startDebugInPrivate = function(url, proxy, profileName, debuggingPort, i
;
};
exports.VERSIONINFO = "Chrome Web Browser Debugging Interface (chrome.js) version 0.4.13";
exports.VERSIONINFO = "Chrome Web Browser Debugging Interface (chrome.js) version 0.4.14";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;