diff --git a/background.js b/background.js index 5864430..b39790e 100755 --- a/background.js +++ b/background.js @@ -12,7 +12,8 @@ const restrictions = { 'economist.com': /.+economist\.com\/.+\/\d{1,4}\/\d{1,2}\/\d{2}\/.+/, 'elcomercio.pe': /.+\/elcomercio.pe\/.+((\w)+(\-)+){3,}.+/, 'gestion.pe': /.+\/gestion.pe\/.+((\w)+(\-)+){3,}.+/, - 'quora.com': /^((?!quora\.com\/search\?q=).)*$/ + 'quora.com': /^((?!quora\.com\/search\?q=).)*$/, + 'seekingalpha.com': /.+seekingalpha\.com\/article\/.+/ } // Don't remove cookies before page load diff --git a/contentScript.js b/contentScript.js index 55bfed8..6d17549 100755 --- a/contentScript.js +++ b/contentScript.js @@ -1,5 +1,5 @@ // clean local storage of sites (with an exemption for hold-list) -var arr_localstorage_hold = ['sfchronicle.com']; +var arr_localstorage_hold = ['seekingalpha.com', 'sfchronicle.com']; if (!matchDomain(arr_localstorage_hold)){ window.localStorage.clear(); }