次の JavaScript コードは、Tinder の写真の「いいね!」セクションのぼかしを解除するために設計されたスクリプトです。これは、Tinder の API からティーザー画像を取得し、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 要素の選択:
ぼやけた画像を置換:
非同期/待機:
このスクリプトは、ブラウザ開発者ツールと Tinder API の機能を利用して、有料サブスクリプションを必要とせずに、あなたを「いいね!」した人を確認できるようにすることで、ユーザー エクスペリエンスを向上させます。
? GitHub リポジトリ: Tinder Unblur - Tinder のいいねを明らかにする
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3