DMM Auto Cookie Setter (Both Domains)

Automatically set a specific cookie when visiting dmm.com and dmm.co.jp for bypass geo blocking.

  1. // ==UserScript==
  2. // @name DMM Auto Cookie Setter (Both Domains)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Automatically set a specific cookie when visiting dmm.com and dmm.co.jp for bypass geo blocking.
  6. // @author Parin
  7. // @match *://*.dmm.com/*
  8. // @match *://*.dmm.co.jp/*
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.cookie = "ckcy_remedied_check=ec_mrnhbtk; expires=Sat, 24 May 2025 02:51:01 UTC; domain=.dmm.com; path=/";
  16. document.cookie = "ckcy_remedied_check=ec_mrnhbtk; expires=Sat, 24 May 2025 02:51:01 UTC; domain=.dmm.co.jp; path=/";
  17. })();