Instagram Button Labels Library

Library script containing Previous and Next button labels in multiple languages

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/530900/1564839/Instagram%20Button%20Labels%20Library.js

// ==UserScript==
// @name         Instagram Button Labels Library
// @description  Library script containing Previous and Next button labels in multiple languages
// @version      1.2
// @author       Ezektor
// @grant        none
// @namespace    https://gf.qytechs.cn/users/1414348
// ==/UserScript==

const labels = {
    English: { previous: 'Back', next: 'Next' },
    Español: { previous: 'Volver', next: 'Siguiente' },
    Deutsche: { previous: 'Zurück', next: 'Weiter' },
    Français: { previous: 'Retour', next: 'Suivant' }
};

function getButtonLabels(language) {
    return labels[language] || labels.en;
}

function getAvailableLanguages() {
    return Object.keys(labels);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址