・Google Play
ttps://play.google.com/store/apps/details?id=mark.via.gp
・過去バージョンのapkファイル集
ttps://m.apkpure.com/via-browser-fast-light/mark.via.gp
・公式サイト
ttp://via.1year.cc/
・t.me/viatg
※前スレ
【Android】Via Browser - Fast & Light
https://egg.5ch.net/test/read.cgi/android/1500200508/
【Android】Via Browser - Fast & Light ★2
1名無しさん@お腹いっぱい。
2024/03/13(水) 00:37:17.54ID:pjRwRcN9677名無しさん@お腹いっぱい。
2026/05/02(土) 16:52:11.73ID:O9ed6Qtv あるね。要素非表示に失敗し削除する時に下までスクロールするのが面倒
678名無しさん@お腹いっぱい。
2026/05/06(水) 07:45:52.59ID:WNQZsywr 先月あたりからスマホで画像をDLする際にこの表示が出るようになったね
↓
「image saved gallery」
以前のコレが出なくなった
↓
ダウンロードしますか
〇〇〇〇.jpg (←URL)
↓
「image saved gallery」
以前のコレが出なくなった
↓
ダウンロードしますか
〇〇〇〇.jpg (←URL)
679名無しさん@お腹いっぱい。
2026/05/06(水) 11:00:17.13ID:98ePMsFJ はじめてやってみたけどそのポップでるね
/storage/emulated/0/Pictures/Via/****.jpeg
ここにdlされるけどDownloadフォルダに設定できない
泥16
/storage/emulated/0/Pictures/Via/****.jpeg
ここにdlされるけどDownloadフォルダに設定できない
泥16
680名無しさん@お腹いっぱい。
2026/05/07(木) 08:30:52.38ID:8ttcTh8i 決まったサイトを巡回するのには最高のブラウザなんだけど
via上でxやインスタの読み込みが激遅
これは諦めるしかない
via上でxやインスタの読み込みが激遅
これは諦めるしかない
681名無しさん@お腹いっぱい。
2026/06/15(月) 20:07:58.67ID:7x9zo2mr 今日からt.coやら画像読み込まなくなったよ
痛ニュー
痛ニュー
682名無しさん@お腹いっぱい。
2026/06/16(火) 17:06:57.51ID:UXeyXj87 ↑viaじゃなくてスクリプトが原因だった
これ入れなきゃ消せない広告がでる
github.com/FilteringDev/tinyShield
でも導入すると
t.coなどのプリビューが見れなくなる
設定/スクリプト/tinyShield/長押し/Excludes
*://x.com/*
*://twitter.com/*
追加したら見れるようになった
これ入れなきゃ消せない広告がでる
github.com/FilteringDev/tinyShield
でも導入すると
t.coなどのプリビューが見れなくなる
設定/スクリプト/tinyShield/長押し/Excludes
*://x.com/*
*://twitter.com/*
追加したら見れるようになった
683名無しさん@お腹いっぱい。
2026/06/16(火) 17:46:05.41ID:UXeyXj87 Xを開いた時のポップアップ系削除するスクリプト
// ==UserScript==
// @name Xポップ消し
// @namespace https://viayoo.com/
// @version 0.1
// @description Xのポップアップを削除
// @author You
// @run-at document-end
// @match https://x.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeBanner() {
document.querySelectorAll('[role="dialog"]').forEach(el => el.remove());
document.querySelectorAll('[aria-modal="true"]').forEach(el => el.remove());
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.backgroundColor.startsWith('rgba(')
) {
el.remove();
}
});
document.body.style.overflow = 'auto';
document.documentElement.style.overflow = 'auto';
}
setInterval(removeBanner, 500);
})();
// ==UserScript==
// @name Xポップ消し
// @namespace https://viayoo.com/
// @version 0.1
// @description Xのポップアップを削除
// @author You
// @run-at document-end
// @match https://x.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeBanner() {
document.querySelectorAll('[role="dialog"]').forEach(el => el.remove());
document.querySelectorAll('[aria-modal="true"]').forEach(el => el.remove());
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.backgroundColor.startsWith('rgba(')
) {
el.remove();
}
});
document.body.style.overflow = 'auto';
document.documentElement.style.overflow = 'auto';
}
setInterval(removeBanner, 500);
})();
684名無しさん@お腹いっぱい。
2026/06/24(水) 20:09:54.47ID:uq5+GGD1 >>683
入れてみたが稀にバグるよ
入れてみたが稀にバグるよ
685名無しさん@お腹いっぱい。
2026/07/01(水) 23:45:02.21ID:ucxorWoF すまん、スレ2個あったからあっちにも書いちゃったが
ホーム画面の検索フォームの🔍の表示が遅くてタップしてから5秒くらい待たされるのなんとかして
ホーム画面の検索フォームの🔍の表示が遅くてタップしてから5秒くらい待たされるのなんとかして
2026/07/02(木) 08:19:02.69ID:vkT/Vjh8
687名無しさん@お腹いっぱい。
2026/07/02(木) 08:23:28.74ID:OPUGFrO6 バグだからアプデ対応待ちかな
688名無しさん@お腹いっぱい。
2026/07/02(木) 11:22:09.22ID:CsBAhIIL689名無しさん@お腹いっぱい。
2026/07/02(木) 13:32:00.60ID:V0yg0nTB >>688
いいってことよ 気にすんな お役に立てて 良かったよ たまには君も人の役に立つ側になれよ
いいってことよ 気にすんな お役に立てて 良かったよ たまには君も人の役に立つ側になれよ
690名無しさん@お腹いっぱい。
2026/07/02(木) 16:59:12.21ID:OPUGFrO6 デベロッパーに連絡
サイトに連絡etc何かしらアクション起こす人は偉い
サイトに連絡etc何かしらアクション起こす人は偉い
691名無しさん@お腹いっぱい。
2026/07/02(木) 19:54:19.99ID:90jXWTRj >>690
照れるな
照れるな
692名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:11.86ID:mKtlGmtG // ==UserScript==
// @name X バナー削除
// @namespace local
// @version 1.0
// @description Xの下部固定バナーのみ削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeBottomBanner() {
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.bottom === '0px' &&
el.offsetWidth >= window.innerWidth * 0.9 &&
el.offsetHeight < window.innerHeight * 0.5
) {
el.remove();
}
});
}
new MutationObserver(removeBottomBanner).observe(document.body, {
childList: true,
subtree: true
});
removeBottomBanner();
})();
// @name X バナー削除
// @namespace local
// @version 1.0
// @description Xの下部固定バナーのみ削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeBottomBanner() {
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.bottom === '0px' &&
el.offsetWidth >= window.innerWidth * 0.9 &&
el.offsetHeight < window.innerHeight * 0.5
) {
el.remove();
}
});
}
new MutationObserver(removeBottomBanner).observe(document.body, {
childList: true,
subtree: true
});
removeBottomBanner();
})();
693名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:45.97ID:mKtlGmtG // ==UserScript==
// @name X バナー削除
// @namespace local
// @version 1.0
// @description Xの下部固定バナーのみ削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeBottomBanner() {
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.bottom === '0px' &&
el.offsetWidth >= window.innerWidth * 0.9 &&
el.offsetHeight < window.innerHeight * 0.5
) {
el.remove();
}
});
}
new MutationObserver(removeBottomBanner).observe(document.body, {
childList: true,
subtree: true
});
removeBottomBanner();
})();// ==UserScript==
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
// @name X バナー削除
// @namespace local
// @version 1.0
// @description Xの下部固定バナーのみ削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeBottomBanner() {
document.querySelectorAll('div').forEach(el => {
const s = getComputedStyle(el);
if (
s.position === 'fixed' &&
s.bottom === '0px' &&
el.offsetWidth >= window.innerWidth * 0.9 &&
el.offsetHeight < window.innerHeight * 0.5
) {
el.remove();
}
});
}
new MutationObserver(removeBottomBanner).observe(document.body, {
childList: true,
subtree: true
});
removeBottomBanner();
})();// ==UserScript==
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
694名無しさん@お腹いっぱい。
2026/07/02(木) 20:00:59.23ID:mKtlGmtG // ==UserScript==
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
// @name X Overlay Remover
// @namespace local
// @version 1.0
// @description Xの全画面オーバーレイを削除
// @match https://x.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function removeOverlay() {
document
.querySelectorAll('.bg-black.flex-col.size-full.flex.z-\\[100\\].inset-0.fixed')
.forEach(el => el.remove());
}
new MutationObserver(removeOverlay).observe(document.documentElement, {
childList: true,
subtree: true
});
removeOverlay();
})();
695名無しさん@お腹いっぱい。
2026/07/02(木) 20:01:30.00ID:mKtlGmtG >>693
これはスルー
これはスルー
696名無しさん@お腹いっぱい。
2026/07/02(木) 20:02:12.91ID:mKtlGmtG // ==UserScript==
// @name Google「他の人はこちらも検索」削除(安定版)
// @namespace local
// @version 1.0
// @description 検索結果を壊さず関連検索ブロックのみ削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('g-more-link, .Wt5Tfe').forEach(el => {
const text = (el.innerText || '').trim();
if (!text.includes('他の人はこちらも検索')) return;
const block =
el.closest('div[data-hveid]') ||
el.closest('g-section-with-header') ||
el.parentElement;
if (block) block.remove();
});
}
clean();
const observer = new MutationObserver(clean);
observer.observe(document.body, { childList: true, subtree: true });
})();
// @name Google「他の人はこちらも検索」削除(安定版)
// @namespace local
// @version 1.0
// @description 検索結果を壊さず関連検索ブロックのみ削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('g-more-link, .Wt5Tfe').forEach(el => {
const text = (el.innerText || '').trim();
if (!text.includes('他の人はこちらも検索')) return;
const block =
el.closest('div[data-hveid]') ||
el.closest('g-section-with-header') ||
el.parentElement;
if (block) block.remove();
});
}
clean();
const observer = new MutationObserver(clean);
observer.observe(document.body, { childList: true, subtree: true });
})();
697名無しさん@お腹いっぱい。
2026/07/02(木) 20:02:31.59ID:mKtlGmtG // ==UserScript==
// @name Google 注目商品 削除(安全版)
// @namespace local
// @version 1.1
// @description 「注目されている商品」だけを安全に削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('h3, div, span').forEach(el => {
const text = (el.innerText || '').trim();
if (text !== '注目されている商品') return;
const block =
el.closest('g-scrolling-carousel') ||
el.closest('div[data-hveid]');
if (block) {
block.remove();
}
});
}
clean();
new MutationObserver(clean).observe(document.body, {
childList: true,
subtree: true
});
})();
// @name Google 注目商品 削除(安全版)
// @namespace local
// @version 1.1
// @description 「注目されている商品」だけを安全に削除
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function () {
'use strict';
function clean() {
document.querySelectorAll('h3, div, span').forEach(el => {
const text = (el.innerText || '').trim();
if (text !== '注目されている商品') return;
const block =
el.closest('g-scrolling-carousel') ||
el.closest('div[data-hveid]');
if (block) {
block.remove();
}
});
}
clean();
new MutationObserver(clean).observe(document.body, {
childList: true,
subtree: true
});
})();
レスを投稿する
ニュース
- 佐藤二朗 ハラスメント報道にコメント「大変残念。全ての事実が明らかになることを望みます」所属事務所「到底受け入れられない」★47 [Ailuropoda melanoleuca★]
- 元AKB48・大島麻衣、デート代は“男性が払うべき”主張 「好きな人との時間を買わせてもらったってぐらいの気持ちの男じゃないとダメ」 [ネギうどん★]
- 【W杯】塩貝健人の撤回しない#ュ言にブラジルが再反発「謝罪なし」「ブラジル人を再び挑発した」 [ネギうどん★]
- 【W杯】アルゼンチン16強 カボベルデに2度追いつかれるも延長死闘制す 8戦連発メッシは3得点に絡む★3 [征夷大将軍★]
- 「駅の床に座らせるのはどうなの?」修学旅行中の写真投稿がSNSで拡散し大炎上…学校アカウント停止にまで発展 [煮卵★]
- 「クールジャパン機構」大赤字の責任どこに 失敗続き官製ファンドの甘さ露呈 赤沢亮正経産大臣は「経済産業省として重く受け止める」 [煮卵★]
- 【MLB】ドジャース vs パドレス ★5
- 【地上波/DAZNほか】 FIFAワールドカップ2026 総合スレ★311【メキシコ/カナダ/アメリカ】
- 小倉競馬 2回3日目
- 〓たかせん〓
- ハム専3
- 西武線 9
- 【高市悲報】佐藤二朗問題の全時系列はこちら。佐藤、擁護不能で完全に終わる [663382246]
- (ヽ´ん`)「Windows Vistaはクソんも!💢」👈あのさぁ、意外と「悪くなかった」よね? [589647274]
- アニメヤニねこのオープニング、膨大な数の映画をオマージュしまくり終わる [199590541]
- 佐藤二郎「死んでもお詫びしきれない。」 [153490809]
- 【悲報】新卒イケメンが上司(31歳女)を孕ませてしまうwwwwwwwwwwwwwwwwwwwwww
- 安倍晋三回顧展、始まる [241672384]