From 5f97af68c7e0bf8dffb0b0886f7860a4c1abfca7 Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Sat, 5 Jul 2014 15:04:51 +0700 Subject: [PATCH] Log pseudolinks --- background.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/background.js b/background.js index 4887bbc..f70ae11 100644 --- a/background.js +++ b/background.js @@ -10,6 +10,9 @@ // Skipping elements that has no href and anchor links if (href === null || href[0] === '#') { + el.addEventListener('mouseover', function(e) { + log('Pseudolink'); + }); continue; }