From cfa7e6523ee8e0d7bfc1eb725998d10e15ee4cea Mon Sep 17 00:00:00 2001 From: narcolepticinsomniac Date: Mon, 3 Jun 2019 07:51:46 -0400 Subject: [PATCH] Exclude rules in tooltips --- popup/popup.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/popup/popup.js b/popup/popup.js index 97cba12f..255071a3 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -337,6 +337,9 @@ function createStyleElement(style) { $('.exclude-by-domain-checkbox', entry).checked = styleExcluded(style, 'domain'); $('.exclude-by-url-checkbox', entry).checked = styleExcluded(style, 'url'); + $('.exclude-by-domain', entry).title = getExcludeRule('domain'); + $('.exclude-by-url', entry).title = getExcludeRule('url'); + return entry; }