Merge pull request #338 from burlesco/add/318

Adiciona Valor Econômico
master
Caio 2021-10-31 23:45:05 -03:00 committed by GitHub
commit bceb80d581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 2 deletions

View File

@ -72,5 +72,6 @@ O Burlesco funciona com os seguintes sites de notícia:
- Seu Dinheiro
- Superinteressante
- UOL
- Valor Econômico
- Veja
- Época

View File

@ -159,6 +159,11 @@ const BLOCKLIST = {
urlFilter: '*://noticias.uol.com.br/midiaglobal/nytimes/*'
}
},
valoreconomico: {
scriptBlocking: [
'*://static.infoglobo.com.br/paywall/js/*',
]
},
veja: {
scriptBlocking: [
'https://*.abril.com.br/wp-content/plugins/abril-plugins/abril-paywall/js/paywall.js*',

View File

@ -97,7 +97,8 @@
"*://*.epoca.globo.com/*",
"*://*.diariodecanoas.com.br/*",
"*://revistaoeste.com/*",
"*://observador.pt/*"
"*://observador.pt/*",
"*://valor.globo.com/"
],
"applications": {

View File

@ -198,6 +198,12 @@
<span>UOL</span>
</label>
</div>
<div>
<label>
<input type="checkbox" id="valoreconomico" checked>
<span>Valor Econômico</span>
</label>
</div>
<div>
<label>
<input type="checkbox" id="veja" checked>

View File

@ -30,7 +30,8 @@ const SITES = [
'superinteressante',
'uol',
'veja',
'observador'
'observador',
'valoreconomico'
];
function saveOptions(e) {