OLD | NEW |
---|---|
(Empty) | |
1 <script> | |
2 chrome.test.runTests([ | |
3 function enumerateTabs() { | |
4 chrome.windows.getAll({"populate": true}, function (windows) { | |
5 chrome.test.succeed(); | |
6 }); | |
7 }, | |
8 function getAllCookieStores() { | |
9 chrome.cookies.getAllCookieStores(function (stores) { | |
10 chrome.test.succeed(); | |
11 }); | |
12 } | |
13 ]); | |
14 </script> | |
OLD | NEW |