From d8627f3768af409f6bddd5d7e2ab61c36fd4adff Mon Sep 17 00:00:00 2001 From: tophf Date: Thu, 12 Jul 2018 14:21:59 +0300 Subject: [PATCH] recognize .user.css URLs with params fixes #428 --- manifest.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index b7d2ab11..bb4979a3 100644 --- a/manifest.json +++ b/manifest.json @@ -73,7 +73,12 @@ }, { "matches": [""], - "include_globs": ["*.user.css", "*.user.styl"], + "include_globs": [ + "*.user.css", + "*.user.styl", + "*.user.css\\?*", + "*.user.styl\\?*" + ], "run_at": "document_idle", "all_frames": false, "js": ["content/install-hook-usercss.js"]