Tesla Order VIN finder - new 2025

Find hidden VIN on manage your order page. This will show box in lower left corner

  1. // ==UserScript==
  2. // @name Tesla Order VIN finder - new 2025
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-02-25
  5. // @description Find hidden VIN on manage your order page. This will show box in lower left corner
  6. // @author InToSSH
  7. // @match https://www.tesla.com/*/teslaaccount/order/*/manage
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. try {
  13. var data = window.Tesla.App.Order;
  14.  
  15. const box = document.createElement('div');
  16. box.textContent = "Found VIN: " + ((typeof data.vin !== 'undefined' && data.vin !== null && data.vin !== '') ? data.vin : 'No VIN yet');
  17.  
  18. box.style.position = 'fixed';
  19. box.style.bottom = '0';
  20. box.style.left = '0';
  21. box.style.backgroundColor = 'lightgray';
  22. box.style.padding = '10px';
  23. box.style.border = '1px solid black';
  24.  
  25. document.body.appendChild(box);
  26. }
  27. catch (e) {
  28. console.log(`Failed: `, e);
  29. return;
  30. }

QingJ © 2025

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