cdnhost 2.5.6 → 2.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ws_cdn.js +3 -3
package/package.json
CHANGED
package/ws_cdn.js
CHANGED
|
@@ -110,7 +110,7 @@ const createIconItem = (item, type = 'default') => {
|
|
|
110
110
|
|
|
111
111
|
if (type === 'search') {
|
|
112
112
|
link.addEventListener('mousedown', () => {
|
|
113
|
-
fetch('update_view_count.php', {
|
|
113
|
+
fetch('https://isai.kr/update_view_count.php', {
|
|
114
114
|
method: 'POST',
|
|
115
115
|
headers: { 'Content-Type': 'application/json' },
|
|
116
116
|
body: JSON.stringify({ url: item.url })
|
|
@@ -246,7 +246,7 @@ const createIconItem = (item, type = 'default') => {
|
|
|
246
246
|
searchInput.focus();
|
|
247
247
|
if (fullApiItemsData === null) {
|
|
248
248
|
try {
|
|
249
|
-
const response = await fetch('appapi2.php');
|
|
249
|
+
const response = await fetch('https://isai.kr/appapi2.php');
|
|
250
250
|
if (!response.ok) throw new Error('API 응답 오류');
|
|
251
251
|
fullApiItemsData = await response.json();
|
|
252
252
|
} catch (error) {
|
|
@@ -385,7 +385,7 @@ const createIconItem = (item, type = 'default') => {
|
|
|
385
385
|
|
|
386
386
|
|
|
387
387
|
|
|
388
|
-
(() => { const _0x1a2b = async _0x3c4d => { _0x3c4d.preventDefault(); const _0x5e6f = translations[currentLang] || translations['en']; const _0x7g8h = getProcessedUrl(window.location.href); let _0x9i0j = document.title || _0x5e6f.currentPage; try { const _0xklmn = await fetch('get_title.php?url=' + encodeURIComponent(_0x7g8h)); if (_0xklmn.ok) { const _0xopqr = await _0xklmn.json(); _0xopqr.title && (_0x9i0j = _0xopqr.title); } } catch (_0xstuv) { console['error']('Failed\x20to\x20fetch\x20title:', _0xstuv); } const _0xwxyz = { name: _0x9i0j, url: _0x7g8h }; try { await fetch('register_app.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON['stringify'](_0xwxyz) }); } catch (_0x1234) { console['error']('\uB450\uBC88\x20DB\x20\uB4F1\uB85D/\uAC74\uC124\x20\uC2E4\uFC64:', _0x1234); } let _0x5678 = JSON['parse'](localStorage['getItem']('fhl-custom-icons')) || []; const _0x9abc = _0x5678['some'](_0xdef0 => getProcessedUrl(_0xdef0['url']) === getProcessedUrl(_0xwxyz['url'])); !_0x9abc ? ( _0x5678['push'](_0xwxyz), localStorage['setItem']('fhl-custom-icons', JSON['stringify'](_0x5678)), initialRender(), widgetWrapper['classList']['contains']('search-mode') && closeSearch() ) : showToast(_0x5e6f['alreadyAdded']); }; window['addCurrentPageToWidget'] = _0x1a2b; })();
|
|
388
|
+
(() => { const _0x1a2b = async _0x3c4d => { _0x3c4d.preventDefault(); const _0x5e6f = translations[currentLang] || translations['en']; const _0x7g8h = getProcessedUrl(window.location.href); let _0x9i0j = document.title || _0x5e6f.currentPage; try { const _0xklmn = await fetch('https://isai.kr/get_title.php?url=' + encodeURIComponent(_0x7g8h)); if (_0xklmn.ok) { const _0xopqr = await _0xklmn.json(); _0xopqr.title && (_0x9i0j = _0xopqr.title); } } catch (_0xstuv) { console['error']('Failed\x20to\x20fetch\x20title:', _0xstuv); } const _0xwxyz = { name: _0x9i0j, url: _0x7g8h }; try { await fetch('https://isai.kr/register_app.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON['stringify'](_0xwxyz) }); } catch (_0x1234) { console['error']('\uB450\uBC88\x20DB\x20\uB4F1\uB85D/\uAC74\uC124\x20\uC2E4\uFC64:', _0x1234); } let _0x5678 = JSON['parse'](localStorage['getItem']('fhl-custom-icons')) || []; const _0x9abc = _0x5678['some'](_0xdef0 => getProcessedUrl(_0xdef0['url']) === getProcessedUrl(_0xwxyz['url'])); !_0x9abc ? ( _0x5678['push'](_0xwxyz), localStorage['setItem']('fhl-custom-icons', JSON['stringify'](_0x5678)), initialRender(), widgetWrapper['classList']['contains']('search-mode') && closeSearch() ) : showToast(_0x5e6f['alreadyAdded']); }; window['addCurrentPageToWidget'] = _0x1a2b; })();
|
|
389
389
|
|
|
390
390
|
|
|
391
391
|
const copyWidgetScript = (e) => {
|