निम्नलिखित जावास्क्रिप्ट कोड एक स्क्रिप्ट है जिसे "आपको पसंद है" अनुभाग से टिंडर फ़ोटो को धुंधला करने के लिए डिज़ाइन किया गया है। यह टिंडर के एपीआई से टीज़र छवियों को लाकर और धुंधली छवियों को स्पष्ट छवियों के साथ बदलने के लिए DOM को गतिशील रूप से अपडेट करके काम करता है।
async function unblur() { // Fetch the teasers (users who liked your profile) from Tinder API const teasers = await fetch("https://api.gotinder.com/v2/fast-match/teasers", { headers: { // Uses the Tinder API token stored in the browser's localStorage "X-Auth-Token": localStorage.getItem("TinderWeb/APIToken"), platform: "android", }, }) // Parse the response as JSON and extract the results .then((res) => res.json()) .then((res) => res.data.results); // Select all blurred teaser elements from the Tinder page's DOM const teaserEls = document.querySelectorAll( ".Expand.enterAnimationContainer > div:nth-child(1)" ); // Loop through each teaser and replace the blurred image with the clear one teasers.forEach((teaser, index) => { const teaserEl = teaserEls[index]; const teaserImage = `https://preview.gotinder.com/${teaser.user._id}/original_${teaser.user.photos[0].id}.jpeg`; // Set the background image to the clear image URL teaserEl.style.backgroundImage = `url(${teaserImage})`; }); } // Call the unblur function unblur();
टीज़र लाया जा रहा है:
DOM तत्वों का चयन:
धुंधली छवियां बदलना:
Async/प्रतीक्षा:
यह स्क्रिप्ट आपको सशुल्क सदस्यता की आवश्यकता के बिना उन लोगों को देखने की अनुमति देकर उपयोगकर्ता अनुभव को बढ़ाने के लिए ब्राउज़र डेवलपर टूल और टिंडर एपीआई की शक्ति का लाभ उठाती है।
? GitHub रेपो: टिंडर अनब्लर - अपनी टिंडर पसंदों को प्रकट करें
अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।
Copyright© 2022 湘ICP备2022001581号-3