diff --git a/popup/popup.js b/popup/popup.js index 292cb69..bb9580c 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -88,5 +88,10 @@ $(document).ready(async function () { commands.forEach((key) => { $(`#settings-form input[name='text-${key}']:checkbox`).on('change', makeHandleSettingChange(key)) }) + + $('body').on('click', 'a', function(){ + chrome.tabs.create({url: $(this).attr('href')}); + return false; + }); return refreshStorage() })