Fix-update SeekingAlpha (limit robot-captcha)

master
magnolia1234 2020-05-27 17:11:06 +02:00
parent 8134734171
commit 62b8c3b9e5
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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();
}