Advertisement
Guest User

Untitled

a guest
Apr 14th, 2024
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 1.52 KB | Source Code | 0 0
  1. async function dlsiteTag() {
  2.         let table = {
  3.             "ざぁ~こ♡": "メスガキ",
  4.             "合意なし": "レイプ",
  5.             "ひよこ": "ロリ",
  6.             "ひよこババア": "ロリババア",
  7.             "閉じ込め": "監禁",
  8.             "超ひどい": "鬼畜",
  9.             "逆レ": "逆レイプ",
  10.             "命令/無理矢理": "強制/無理矢理",
  11.             "近親もの": "近親相姦",
  12.             "責め苦": "拷問",
  13.             "トランス/暗示": "催眠",
  14.             "動物なかよし": "獣姦",
  15.             "精神支配": "洗脳",
  16.             "秘密さわさわ": "痴漢",
  17.             "しつけ": "調教",
  18.             "下僕": "奴隷",
  19.             "屈辱": "陵辱",
  20.             "回し": "輪姦",
  21.             "虫えっち": "蟲姦",
  22.             "モブおじさん": "モブ姦",
  23.             "異種えっち": "異種姦",
  24.             "機械責め": "機械姦",
  25.             "すやすやえっち": "睡眠姦",
  26.             "トランス/暗示ボイス": "催眠音声",
  27.         };
  28.  
  29.         let list = document.querySelectorAll(`a[href*="work.genre"]`);
  30.        
  31.         if (list.length <= 0) {
  32.             console.log("no tag link found");
  33.             return;
  34.         } else {
  35.             console.log(`${list.length} tag link found`);
  36.         }
  37.  
  38.         [...list].forEach(a => {
  39.             let text = a.innerHTML;
  40.             if (table[text]) {
  41.                 a.innerHTML = table[text];
  42.             }
  43.         });
  44.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement