update text

This commit is contained in:
2026-07-10 14:38:08 +02:00
parent 3541c7d2f0
commit d7e1cbfb48
3 changed files with 5 additions and 6 deletions
+3 -4
View File
@@ -148,16 +148,15 @@ When using firefox, use the following:
## ⚙️ Settings ## ⚙️ Settings
> You reach the settings by pressing the tree dots (⋮) in the top right corner of the extension popup. > You reach the settings by pressing the settings icon in the top right corner of the extension popup.
### Hosts ### Hosts
You can enable or disabled for which hosts the extension should redirect. You can enable or disable for which hosts the extension should work.
### Per-site disables ### Per-site disables
The popup shows the current website at the top. Press **Configure this site** to disable specific hosts (or all of them) for the current site only - useful when a site uses multiple hosts and you only want to bypass a few, or when a host misbehaves on a particular site. Herer you can disable specific hosts (or all of them) for the current site only - useful when a site uses multiple hosts and you only want to bypass a few, or when a host misbehaves on a particular site.
All per-site disables are listed here and can be edited or removed.
### ff2mpv ### ff2mpv
@@ -26,7 +26,7 @@
<p class="text-sm font-semibold text-gray-100">Communication enabled</p> <p class="text-sm font-semibold text-gray-100">Communication enabled</p>
<a <a
class="inline-flex items-center gap-1 text-xs text-gray-400 hover:text-gray-200 transition-colors" class="inline-flex items-center gap-1 text-xs text-gray-400 hover:text-gray-200 transition-colors"
href="https://github.com/bytedream/stream-bypass/tree/main?tab=readme-ov-file#ff2mpv-use-mpv-to-directly-play-streams" href="https://github.com/bytedream/stream-bypass/tree/main?tab=readme-ov-file#ff2mpv"
target="_blank" target="_blank"
> >
<Icon src={InformationCircle} size="0.85rem" /> <Icon src={InformationCircle} size="0.85rem" />
@@ -83,7 +83,7 @@
<input <input
type="text" type="text"
bind:value={newDomainInput} bind:value={newDomainInput}
placeholder="Add custom domain…" placeholder="Add domain…"
class="flex-1 min-w-0 text-xs bg-gray-900/60 border border-gray-700 rounded px-2 py-1 text-gray-100 placeholder:text-gray-500 focus:border-linux-mint-green focus:outline-none transition-colors" class="flex-1 min-w-0 text-xs bg-gray-900/60 border border-gray-700 rounded px-2 py-1 text-gray-100 placeholder:text-gray-500 focus:border-linux-mint-green focus:outline-none transition-colors"
onkeydown={(e) => { onkeydown={(e) => {
if (e.key === 'Enter') onDomainAdd(newDomainInput).then(() => (newDomainInput = '')); if (e.key === 'Enter') onDomainAdd(newDomainInput).then(() => (newDomainInput = ''));