aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/main.coffee4
1 files changed, 4 insertions, 0 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index a3857d61..b56d391c 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -318,6 +318,10 @@ updateScrollPosition = (tab, scrollX, scrollY) ->
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) ->
return unless changeInfo.status == "loading" # only do this once per URL change
+ chrome.tabs.insertCSS tabId,
+ allFrames: true
+ code: Settings.get("userDefinedLinkHintCss")
+ runAt: "document_start"
updateOpenTabs(tab)
updateActiveState(tabId))