2GIS Link Decoder

Decodes 2gis tracking links to direct URLs

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         2GIS Link Decoder
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Decodes 2gis tracking links to direct URLs
// @author       Jim_Di
// @license MIT
// @match        https://2gis.ru/*
// @match        https://2gis.kz/*
// @match        https://2gis.kg/*
// @match        https://2gis.am/*
// @match        https://2gis.ae/*
// @match        https://2gis.uz/*
// @match        https://2gis.by/*
// @match        https://2gis.az/*
// @match        https://2gis.ge/*
// @match        https://2gis.tj/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    function decodeLink(href) {
        try {
            const b64 = href.split('/').pop();
            const decoded = atob(decodeURIComponent(b64));
            const url = decoded.split('\n')[0].trim();
            return /^[a-z]+:\/\//i.test(url) || ['viber:','tel:','whatsapp:','tg:'].some(p => url.startsWith(p)) ? url : null;
        } catch (e) {
            console.warn('Decode failed:', href, e);
            return null;
        }
    }

    function process() {
        document.querySelectorAll('a[href^="https://link.2gis."]').forEach(a => {
            const url = decodeLink(a.href);
            if (url) {
                a.href = url;
                if (a.target === '_blank') a.rel = 'noopener';
            }
        });
    }

    process();
    new MutationObserver(process).observe(document.body, { childList: true, subtree: true });
})();