price_adjust

泰铢转换为人民币

  1. // ==UserScript==
  2. // @name price_adjust
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 泰铢转换为人民币
  6. // @author yao
  7. // @match
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @include http://www.boomerangshop.com/*
  11. // @require https://code.jquery.com/jquery-3.6.0.min.js
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. let ele = $('.price');
  17. let html = $('<br/><strong>人民币(汇率0.19) : </strong><span id = "tempId">¥'+parseInt(ele.text().replaceAll(',',''))*0.19+'</span>');
  18. ele.append(html);
  19. // Your code here...
  20. })();
  21.  
  22.  

QingJ © 2025

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