Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name renewMCharCookie
- // @namespace http://czogi.usermd.net
- // @version 1
- // @description Przedłużanie ciasteczka mchar_id co refresh strony
- // @include /http[s]{0,1}:\/\/[a-z]{4,15}\.margonem\.pl/
- // @noframes
- // @author Czogi
- // @grant none
- // ==/UserScript==
- {
- document.cookie?.split("; ").map((cookie) => {
- const [key, val] = cookie.split("=");
- if (key !== "mchar_id") {
- return;
- }
- document.cookie = `${key}=${val}; expires=${new Date(
- new Date().getTime() + 604800000 // 7 dni.
- ).toUTCString()}; domain=.margonem.pl; path=/;`;
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement