Skip to content

Instantly share code, notes, and snippets.

@viller239
Created November 30, 2016 19:36
Show Gist options
  • Select an option

  • Save viller239/c5f9f232dfa018a952f3c81380b65008 to your computer and use it in GitHub Desktop.

Select an option

Save viller239/c5f9f232dfa018a952f3c81380b65008 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i += 1) {
for (var j = 0; j < 100; j += 1) {
chrome.cookies.set({
url: `http://ya${i}.ru`,
name: `name${j}`,
value: `value${j}`,
expirationDate: Math.round(Date.now() / 1000) + 1000000
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment