diff options
-rw-r--r-- | src/content/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/index.js b/src/content/index.js index 5f50a72..7ce41c1 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -15,7 +15,7 @@ const startFollows = (newTab) => { case 'a': if (newTab) { // getAttribute() to avoid to resolve absolute path - let href = element.getibute('href'); + let href = element.getAttribute('href'); // eslint-disable-next-line no-script-url if (!href || href === '#' || href.startsWith('javascript:')) { |