Redirect Twitter to Embedded Tweets

Redirects Twitter links to embedded tweets platform.

当前为 2023-07-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Redirect Twitter to Embedded Tweets
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Redirects Twitter links to embedded tweets platform.
  6. // @author udontkn0wme
  7. // @match https://twitter.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.  
  14. var a = window.location.href.split("/")
  15. window.location.href="https://platform.twitter.com/embed/Tweet.html?id="+a[a.length - 1]
  16.  
  17.  
  18.  
  19.  
  20. })();