MediaWiki:Gadget-iwb.js
Перейти до навігації
Перейти до пошуку
- Іншими мовами
Note: After saving, you have to bypass your browser's cache to see the changes.
Google Chrome, Firefox, Microsoft Edge, and Safari: Hold down the Shift key and click the Reload toolbar button.
For details and instructions about other browsers, see Wikipedia:Bypass your cache.
(() => {
const btns = document.querySelector('.iwb-download-btns');
if (!btns) return;
const mainDlBtn = document.createElement('a');
mainDlBtn.innerHTML = '<span style="margin-left: 50px;">Завантажити</span>';
const ua = navigator.userAgent;
if (ua.includes('Firefox')) {
mainDlBtn.classList.add('iwb-dl-ff');
mainDlBtn.href = 'https://addons.mozilla.org/en-US/firefox/addon/indie-wiki-buddy/';
} else if (ua.includes('Edg')) {
mainDlBtn.classList.add('iwb-dl-edge');
mainDlBtn.href = 'https://chromewebstore.google.com/detail/indie-wiki-buddy/fkagelmloambgokoeokbpihmgpkbgbfm';
} else if (ua.includes('Chrome')) {
mainDlBtn.classList.add('iwb-dl-chrome');
mainDlBtn.href = 'https://chromewebstore.google.com/detail/indie-wiki-buddy/fkagelmloambgokoeokbpihmgpkbgbfm';
} else {
const unsupported = document.createElement('p');
unsupported.innerText = 'Вибачте! Ваш браузер наразі не підтримує Indie Wiki Buddy. Спробуйте використовувати Chrome або Firefox.';
btns.prepend(unsupported);
return;
}
btns.prepend(mainDlBtn);
})();