FacebookMail

delete fb emails

  1. // ==UserScript==
  2. // @name FacebookMail
  3. // @namespace FacebookMail
  4. // @include https://mail.google.com/mail/u/0/*
  5. // @version 1
  6. // @description delete fb emails
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
  8. // ==/UserScript==
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. $(document).ready(function (){
  17. $("td").mouseenter(function(){
  18. var val= $(this).text();
  19.  
  20. if(val.indexOf("Facebook")>-1){
  21. //$(":checkbox").attr('checked',true);
  22. $(this).siblings(":first").children().attr('checked',true);
  23. alert(html);
  24. }
  25. });
  26. });
  27.  

QingJ © 2025

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