/
crocouser
/
streamlive-EXT
Обзор
Документация
Войти
/
crocouser
/
streamlive-EXT
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
master
options.js
7 строк
401 B
TwixoffStudio
Create: options.js, splash.html, splash.js, unavailable.html, icon-128.png, icon-16.png, icon-32.png, icon-48.png, background.js, content.js, manifest.json, options.html
06 авг 2026, 17:12
Верифицирован
06 авг 2026, 17:12
954e675
Код
Авторство
О чём код?
const DEF = 'https://streamliveru.web1337.net/?source=extension'; chrome.storage.sync.get({ siteUrl: DEF }, (d) => { document.getElementById('url').value = d.siteUrl || DEF; }); document.getElementById('save').onclick = () => { let v = (document.getElementById('url').value || '').trim(); if (v && !/^https?:\/\//i.test(v)) v = 'https://' + v; chrome.storage.sync.set({ siteUrl: v || DEF }); };