在指定网站设置调试Cookie
// ==UserScript==
// @name XdebugHelper
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description 在指定网站设置调试Cookie
// @author EddyLee88
// @match *://westar.dev.com/*
// @run-at document-start
// @grant none
// @icon https://xdebug.org/images/favicon.png
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.cookie = "XDEBUG_SESSION=PHPSTORM; path=/;";
})();