зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
322 B
JavaScript
15 строки
322 B
JavaScript
/* eslint-env mozilla/frame-script */
|
|
|
|
"use strict";
|
|
|
|
let cs = Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager);
|
|
|
|
addMessageListener("getCookieCountAndClear", () => {
|
|
let count = cs.cookies.length;
|
|
cs.removeAll();
|
|
|
|
sendAsyncMessage("getCookieCountAndClear:return", { count });
|
|
});
|
|
|
|
cs.removeAll();
|