From 52f2134c200fb3edd4de034286b451659e09f953 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 25 Apr 2022 19:30:26 +0900 Subject: [PATCH] Update chrome.js --- lib/chrome.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/chrome.js b/lib/chrome.js index da770cb..f15f92b 100644 --- a/lib/chrome.js +++ b/lib/chrome.js @@ -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(); };