New features
- Fix the problem of script invalidation
- Other problem fixes
Download
https://jqvnbs.s.cld.pt
Enjoy
Pay me a coffee
18 Sept 2018
Via browser v3.3.9
5 Sept 2018
OH web browser - via alternative
OH web browser is an excellent alternative to via. A lot of features (pdf save, screenshot, page save etc...)
Doesn't need any permission
Take a look on playstore. It's really good
Waiting some new features to take it as a daily browser.
Download:
https://play.google.com/store/apps/details?id=com.oh.bro
Enjoy
Pay me a coffee
4 Sept 2018
30 Aug 2018
Log button - via script
A simple script that open log file
Install copy / paste
/*favorites button*/ function createbookBtn() { var isbookBtn = document.getElementById('bookBtn'); if (isbookBtn) { isbookBtn.parentNode.removeChild(isbookBtn); }; var bookBtn = document.createElement("div"); bookBtn.id = "bookBtn"; bookBtn.innerHTML = "fav"; bookBtn.setAttribute("style","font-size:4vw !important;width:10vw !important;height:10vw !important;line-height:10vw !important;text-align:center !important;background-color:rgba(247,126,147,0.4) !important;box-shadow:0px 1px 10px rgba(0,0,0,0.2) !important;color:#000 !important;position:fixed !important;bottom:20vh !important;right:5vw !important;z-index:99999 !important;border-radius:100% !important;display:none"); bookBtn.onclick = function () { navigatorTo(); }; document.body.appendChild(bookBtn); }; function navigatorTo(x) { location.href = "v://log"; }; createbookBtn(); document.body.ontouchstart = function(){ document.getElementById("bookBtn").style.display="block"; setTimeout(function(){ document.getElementById("bookBtn").style.display="none"; },3000); }
Enjoy
Pay me a coffee
29 Aug 2018
Via browser - secret urls
v://log - open log file
v://offline - open saved pages offline
v://bookmark - open bookmarks
v://history - open history
v:// - open all
22 Aug 2018
16 Aug 2018
Xbrowser v2.7.0 - via alternative
New features
V2.7.0 build 348
Patch: Fixed a conflict between reading mode and forward key.
- Provide support for the news novel website reading mode
- Supporting smart spelling pages on some novel websites, reading novels is more cool
- Reading mode supports real-time adjustment of font size, and background
- Solve the problem that some model input methods cannot be recovered
Download
https://7s8nzn.s.cld.pt
Enjoy
Pay me a coffee
10 Aug 2018
Copy link - via script
Simple button to copy actual website link
Install(copy/paste)
domain: *
script:
/*copylink*/{ function createcopylinkBtn() { var iscopylinkBtn = document.getElementById('copylinkBtn'); if (iscopylinkBtn) { iscopylinkBtn.parentNode.removeChild(iscopylinkBtn); }; var copylinkBtn = document.createElement("div"); copylinkBtn.id = "copylinkBtn"; copylinkBtn.innerHTML = "C"; copylinkBtn.setAttribute("style","font-size:4vw !important;width:10vw !important;height:10vw !important;line-height:10vw !important;text-align:center !important;background-color:rgba(48,9,243,0.4) !important;box-shadow:0px 1px 10px rgba(0,0,0,0.2) !important;color:#000 !important;position:fixed !important;bottom:30vh !important;right:5vw !important;z-index:99999 !important;border-radius:100% !important;display:block !important;"); copylinkBtn.onclick = function () {var dummy = document.createElement('input'), text = window.location.href; document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand('copy'); document.body.removeChild(dummy); via.toast("link copied");}; document.body.appendChild(copylinkBtn); }; createcopylinkBtn(); };
Enjoy
Please pay me a coffee
9 Aug 2018
YouTube downloader - via script
A simple button to download youtube media
The script copy the youtube link and open automatically a converter website. Just paste link, select format, done.
Install (copy/paste):
Source: m.youtube.com
script:
/*youtube*/if(location.href.match("youtube.com/")){ function createyoutubeBtn() { var isyoutubeBtn = document.getElementById('youtubeBtn'); if (isyoutubeBtn) { isyoutubeBtn.parentNode.removeChild(isyoutubeBtn); }; var youtubeBtn = document.createElement("div"); youtubeBtn.id = "youtubeBtn"; youtubeBtn.innerHTML = "Yt"; youtubeBtn.setAttribute("style","font-size:4vw !important;width:10vw !important;height:10vw !important;line-height:10vw !important;text-align:center !important;background-color:rgba(26,255,0,0.4) !important;box-shadow:0px 1px 10px rgba(0,0,0,0.2) !important;color:#000 !important;position:fixed !important;bottom:20vh !important;right:5vw !important;z-index:99999 !important;border-radius:100% !important;display:block !important;"); youtubeBtn.onclick = function () {var dummy = document.createElement('input'), text = window.location.href; document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand('copy'); document.body.removeChild(dummy); getUrl(location.href); }; document.body.appendChild(youtubeBtn); }; function getUrl (x) {location.href = "https://www.onlinevideoconverter.com/en/video-converter"; }; createyoutubeBtn(); };
Enjoy
Please pay me a coffee
Amaze browser - via alternative
Excellent via browser alternative. Very useful to sniff media files.
Available on play store
Download
https://hf24dj.s.cld.pt
Please pay me a coffee
31 Jul 2018
Zoom - via browser script
With this script you can zoon any website.
/*zoom*/var sc = document.createElement("meta");sc.setAttribute("name", "viewport");sc.setAttribute("content", "width=device-width, initial-scale=1, user-scalable=yes");document.head.appendChild(sc);
Install: copy code and paste it on settings>>script
Please pay me a coffee
30 Jul 2018
Via browser v3.3.7 Mod
What's New
- Fixed some issues
mod
- Languages: Russian, English
- Chinese hosts were deleted
- Added Yandex search
- Modified menu
- Optimized graphics
- Analytics collection removed
Download
https://50pprn.s.cld.pt
Please pay me a coffee
29 Jul 2018
28 Jul 2018
Go to the top - via browser script
This script add a arrow button at right down corner
Code:
/*to the top*/function toTop() { var toTopBtn = document.createElement("div"); toTopBtn.id = "toTopBtn"; toTopBtn.innerHTML = "⇧"; toTopBtn.setAttribute("style","font-size:7vw !important;width:10vw !important;height:10vw !important;line-height:10vw !important;text-align:center !important;background-color:rgba(255,255,255,0.4) !important;box-shadow:0px 1px 10px rgba(0,0,0,0.2) !important;color:#000 !important;position:fixed !important;bottom:10vh !important;right:5vw !important;z-index:99999 !important;border-radius:100% !important;display:block;"); toTopBtn.onclick = function () { window.scrollTo(0,0); }; document.body.appendChild(toTopBtn); }; function isScrollToTop() { var theBody = document.getElementsByTagName('body')[0]; var topTopBtn = document.getElementById('toTopBtn'); theBody.ontouchstart = function (e) { mystartY = e.changedTouches[0].clientY; }; theBody.ontouchmove = function (e) { myendY = e.changedTouches[0].clientY; var y = myendY - mystartY; if (y >= 0){ toTopBtn.style.display = "block"; } else { toTopBtn.style.display = "none"; }; }; }; var isLoading = document.getElementById('toTopBtn'); if(!isLoading) { toTop(); isScrollToTop(); };
Installation: copy code and paste it on settings>>script
Please pay me a coffee
Via mod dark grey v3.3.1
For me the best via version. More features on tools.
Black modded
Download
https://sietst.s.cld.pt
Please pay me a coffee