Greasy Fork镜像 还支持 简体中文。

FA Emotes-On-Beta

Bringing A "Classic" touch to the Beta!

  1. // ==UserScript==
  2. // @name FA Emotes-On-Beta
  3. // @namespace JaysonHusky
  4. // @version 1.1
  5. // @description Bringing A "Classic" touch to the Beta!
  6. // @author JaysonHusky
  7. // @match https://*.furaffinity.net/*
  8. // @grant none
  9. // @require https://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. var BBCodeEmoji = `
  14. <i class="smilie tongue" style="cursor: pointer;" onclick="performInsert(this, '', ' :-p ');"></i>
  15. <i class="smilie cool" style="cursor: pointer;" onclick="performInsert(this, '', ' :cool: ');"></i>
  16. <i class="smilie wink" style="cursor: pointer;" onclick="performInsert(this, '', ' ;-) ');"></i>
  17. <i class="smilie oooh" style="cursor: pointer;" onclick="performInsert(this, '', ' :-o ');"></i>
  18. <i class="smilie smile" style="cursor: pointer;" onclick="performInsert(this, '', ' :-) ');"></i>
  19. <i class="smilie evil" style="cursor: pointer;" onclick="performInsert(this, '', ' :evil: ');"></i>
  20. <i class="smilie huh" style="cursor: pointer;" onclick="performInsert(this, '', ' :huh: ');"></i>
  21. <i class="smilie whatever" style="cursor: pointer;" onclick="performInsert(this, '', ' :whatever: ');"></i>
  22. <i class="smilie angel" style="cursor: pointer;" onclick="performInsert(this, '', ' :angel: ');"></i>
  23. <i class="smilie badhairday" style="cursor: pointer;" onclick="performInsert(this, '', ' :badhair: ');"></i>
  24. <i class="smilie lmao" style="cursor: pointer;" onclick="performInsert(this, '', ' :lmao: ');"></i>
  25. <i class="smilie cd" style="cursor: pointer;" onclick="performInsert(this, '', ' :cd: ');"></i>
  26. <i class="smilie crying" style="cursor: pointer;" onclick="performInsert(this, '', ' :cry: ');"></i>
  27. <i class="smilie dunno" style="cursor: pointer;" onclick="performInsert(this, '', ' :idunno: ');"></i>
  28. <i class="smilie embarrassed" style="cursor: pointer;" onclick="performInsert(this, '', ' :embarrassed: ');"></i>
  29. <i class="smilie gift" style="cursor: pointer;" onclick="performInsert(this, '', ' :gift: ');"></i>
  30. <i class="smilie coffee" style="cursor: pointer;" onclick="performInsert(this, '', ' :coffee: ');"></i>
  31. <i class="smilie love" style="cursor: pointer;" onclick="performInsert(this, '', ' :love: ');"></i>
  32. <i class="smilie nerd" style="cursor: pointer;" onclick="performInsert(this, '', ' :isanerd: ');"></i>
  33. <i class="smilie note" style="cursor: pointer;" onclick="performInsert(this, '', ' :note: ');"></i>
  34. <i class="smilie derp" style="cursor: pointer;" onclick="performInsert(this, '', ' :derp: ');"></i>
  35. <i class="smilie sarcastic" style="cursor: pointer;" onclick="performInsert(this, '', ' :sarcastic: ');"></i>
  36. <i class="smilie serious" style="cursor: pointer;" onclick="performInsert(this, '', ' :serious: ');"></i>
  37. <i class="smilie sad" style="cursor: pointer;" onclick="performInsert(this, '', ' :-( ');"></i>
  38. <i class="smilie sleepy" style="cursor: pointer;" onclick="performInsert(this, '', ' :sleepy: ');"></i>
  39. <i class="smilie teeth" style="cursor: pointer;" onclick="performInsert(this, '', ' :teeth: ');"></i>
  40. <i class="smilie veryhappy" style="cursor: pointer;" onclick="performInsert(this, '', ' :veryhappy: ');"></i>
  41. <i class="smilie yelling" style="cursor: pointer;" onclick="performInsert(this, '', ' :yelling: ');"></i>
  42. <i class="smilie zipped" style="cursor: pointer;" onclick="performInsert(this, '', ' :zipped: ');"></i>`;
  43. var pathx=window.location.pathname;
  44. if(~pathx.indexOf("/controls/profile/")){
  45. $("textarea[name='profileinfo']").before(BBCodeEmoji);
  46. }
  47. else if(~pathx.indexOf("/msg/pms/")){
  48. $("textarea[name='message']").before("<br/><br/>"+BBCodeEmoji);
  49. }
  50. else if(~pathx.indexOf("/controls/journal/")) {
  51. $("textarea[name='message']").before("<br/><br/>"+BBCodeEmoji);
  52. }
  53. else {
  54. $("textarea[name='message']").before("<br/><br/>"+BBCodeEmoji);
  55. $("textarea[name='reply']").before("<br/><br/>"+BBCodeEmoji);
  56. $("textarea[name='shout']").after(BBCodeEmoji);
  57. }
  58. })();

QingJ © 2025

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