Update chrome.js

This commit is contained in:
Namhyeon Go 2022-04-25 19:30:26 +09:00 committed by GitHub
parent 915d72ebbe
commit 52f2134c20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1220,6 +1220,10 @@ var ChromeObject = function(interfaces) {
this.getReadyState = function() {
return this.getEvaluatedValue("document.readyState");
};
this.getCookie = function() {
return this.getEvaluatedValue("document.cookie");
};
this.create();
};