Problem , Download link
Script code for better viewing
The description is not entirely clear. If you still need help, provide additional examples/links/screenshots/whatever to illustrate the issue and the desired result.
Hi Felippe,
Test this (press RAW for install)
https://gist.github.com/reek/3155c98bd542c9ffed45
See you
Reek
Hi Felippe,
Test this (press RAW for install)
https://gist.github.com/reek/3155c98bd542c9ffed45
See you
Reek
it did not work
Alterando a linha para
// @include http*://*.fileproject.com.br/*
Funcionou!
Ok, fixed !
Problem , Download link
I 'm trying to create a script for a particular site , however as in the code of the script contains the direct link to download when using Script on the same site , but in another post Download the file keeps the same ...
"http://m1np.fileproject.com.br/download/-bLFV0O5gqETAWpOW1faJA/1431555609/manga/capitulos/nP_700-02-previa.rar"
if(tempo>0) { -------------> if(tempo>15) {
original code:
var tempo = 15;
window.onload = function () {
contagem();
}
function contagem() {
if(tempo>0) {
var span = document.getElementById('tempo_espera');
span.innerHTML = tempo;
tempo--;
setTimeout("contagem()",1000);
}
else {
var div = document.getElementById('subs');
div.innerHTML = 'BAIXAR
ARQUIVO';
}
}