発リンクチェック
総発リンク数:35 (重複除く:24)
外部リンク数:34 内部リンク数:1 nofollowリンク数:0
太字は外部リンク、細字は内部リンク、緑字はnofollowリンクです。
| 1 | Sign in https://onemy.link/login |
| 2 | Sign up https://onemy.link/register |
| 3 |
📱 Bio pages https://onemy.link/links?type=biolink |
| 4 |
🔗 Short links https://onemy.link/links?type=link |
| 5 |
👤 Share vcards https://onemy.link/links?type=vcard |
| 6 |
📆 Event links https://onemy.link/links?type=event |
| 7 |
🤳 QR codes https://onemy.link/qr-codes |
| 8 |
🛠️ Web tools https://onemy.link/tools |
| 9 |
📊️ Analytics https://onemy.link/links-statistics |
| 10 |
Claim link
https://onemy.link/register |
| 11 |
Checker tools
https://onemy.link/tools |
| 12 |
Text tools
https://onemy.link/tools |
| 13 |
Converter tools
https://onemy.link/tools |
| 14 |
Generator tools
https://onemy.link/tools |
| 15 |
Developer tools
https://onemy.link/tools |
| 16 |
Image manipulation tools
https://onemy.link/tools |
| 17 |
Time converter tools
https://onemy.link/tools |
| 18 |
Misc tools
https://onemy.link/tools |
| 19 |
API Documentation
https://onemy.link/api-documentation |
| 20 | Choose plan https://onemy.link/register |
| 21 |
Try for 7 days https://onemy.link/register?redirect=pay/1 |
| 22 |
Try for 7 days https://onemy.link/register?redirect=pay/2 |
| 23 |
Sign up
https://onemy.link/register |
| 24 |
How to Create a Single Link Page for All Social Media and Contacts with Onemy.link
https://onemy.link/en/blog/how_to_create_a_single_link_page |
| 25 |
https://facebook.com/onemy.link |
| 26 |
https://instagram.com/onemy.link |
| 27 |
english https://onemy.link/en/ |
| 28 |
🇪🇸
español https://onemy.link/es/ |
| 29 |
🇺🇦
українська https://onemy.link/ua/ |
| 30 |
🇷🇺
русский https://onemy.link/ru/ |
| 31 | Blog https://onemy.link/blog |
| 32 | Affiliate https://onemy.link/affiliate |
| 33 |
Privacy Policy https://onemy.link/page/privacy_policy |
| 34 |
Terms & Conditions https://onemy.link/page/terms_and_conditions |
| 35 | privacy policy." },
{
title: "Strictly necessary cookies",
description: "These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.",
linkedCategory: 'necessary'
},
{
title: "Performance and Analytics cookies",
description: "These cookies allow the website to remember the choices you have made in the past.",
linkedCategory: 'analytics'
},
{
title: "Advertisement and Targeting cookies",
description: "These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you.",
linkedCategory: 'targeting'
},
]
}
};
CookieConsent.run({
categories: {
necessary: {
enabled: true,
readOnly: true,
},
analytics: {},
targeting: {},
},
language: {
rtl: language_direction == 'rtl' ? language_code : null,
default: language_code,
autoDetect: 'document',
translations
},
onFirstConsent: () => {
const preferences = CookieConsent.getUserPreferences();
window.dispatchEvent(new CustomEvent('cookie_consent_update', { detail: { accepted_categories: preferences.acceptedCategories } }));
if(!get_cookie('cookie_consent_logged')) {
navigator.sendBeacon(`${url}cookie-consent`, JSON.stringify({global_token, level: preferences.acceptedCategories}));
set_cookie('cookie_consent_logged', '1', 182, "\/");
}
},
onChange: () => {
const preferences = CookieConsent.getUserPreferences();
window.dispatchEvent(new CustomEvent('cookie_consent_update', { detail: { accepted_categories: preferences.acceptedCategories } }));
navigator.sendBeacon(`${url}cookie-consent`, JSON.stringify({global_token, level: preferences.acceptedCategories}));
set_cookie('cookie_consent_logged', '1', 182, "\/");
},
guiOptions: {
consentModal: {
layout: "cloud",
position: "bottom center",
flipButtons: false
},
preferencesModal: {
layout: 'box',
}
},
});
});
'use strict';
/* ------------------------------
DOM Elements & Data Storage
------------------------------ */
const spotlight_wrapper = document.getElementById('spotlight_wrapper');
const spotlight_modal = document.querySelector('.spotlight-modal');
const spotlight_results = document.querySelector('#spotlight_results');
let spotlight_results_array = [];
/* ------------------------------
Show / Hide Spotlight
------------------------------ */
const spotlight_display = () => {
spotlight_wrapper.classList.remove('d-none');
requestAnimationFrame(() => {
spotlight_wrapper.classList.add('show');
});
spotlight_wrapper.setAttribute('aria-hidden', 'false');
document.querySelector('#spotlight_search').focus();
};
const spotlight_hide = () => {
spotlight_wrapper.classList.remove('show');
spotlight_wrapper.setAttribute('aria-hidden', 'true');
setTimeout(() => {
spotlight_wrapper.classList.add('d-none');
}, 150);
};
/* ------------------------------
Fetch Pages & Store Locally
------------------------------ */
const spotlight_get_pages = async () => {
const form = new FormData(document.querySelector('#spotlight_form'));
const params = new URLSearchParams(form).toString();
const response = await fetch(`${url}spotlight?global_token=${global_token}`, { method: 'get' });
let data;
try {
data = await response.json();
} catch (error) {
return false;
}
if(!response.ok || data.status === 'error') {
return false;
} else {
let results = data.details.map(obj => ({ ...obj, clicks: 0 }));
localStorage.setItem('8eb5a64f52235f8f98653c756fedc989_spotlight_results', JSON.stringify(results));
}
return data.details;
};
/* ------------------------------
Build & Insert All Results Once
------------------------------ */
const build_all_spotlight_results = (pages) => {
// Sort them once by clicks (descending)
pages.sort((a, b) => b.clicks - a.clicks);
// Build in one shot
let html = '';
for (const page of pages) {
// Include lowercase name/url as data attrs for quick toggling
html += `
${page.name}
${page.url ? '/' + page.url : url}
\ |