Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion webcomic_reader.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ var defaultSettings = {
// @include http://www.anymanga.com/*
// @include http://anymanga.com/*
// @include http://mangafox.me/*
// @include http://m.mangafox.me/*
// @include http://www.leasticoulddo.com/*
// @include http://leasticoulddo.com/*
// @include http://www.sinfest.net/*
Expand Down Expand Up @@ -1170,6 +1171,14 @@ var paginas = [
next: [/var url_next = "([^\"]+)"/, 1],
scrollx:'R'
},
{
url: 'm.mangafox.me',
img: ['//img[@id="image"]'],
back: ['//select/option[@selected]/preceding-sibling::*[1]'],
next: ['//div[@id="viewer"]/a'],
scrollx:'R'

},
{ url: 'mangafox.me',
img: ['//img[@id="image"]'],
back: function(html, pos){
Expand Down Expand Up @@ -3806,13 +3815,20 @@ var paginas = [
img: [['.manga-page']],
scrollx:'R'
},
{ url: 'mangacow.co|mangadoom.co|omgmanga.com',
{ url: 'mangadoom.co|omgmanga.com',
img: [['.prw a img']],
back: '.="Prev"',
next: '.="Next"',
style: '#wcr_imagen{max-width:none;}#sct_col_l.full_width{width:auto;}',
scrollx:'R'
},
{ url: 'mangacow.co',
img: [['.prw a img']],
back: 'img[@alt="Back"]',
next: 'img[@alt="Next"]',
style: '#wcr_imagen{max-width:none;}#sct_col_l.full_width{width:auto;}',
scrollx:'R'
},
{ url: 'ver-manga.net',
img: 'http://www.ver-manga.net/cdn/',
back: '.="Anterior"',
Expand Down