Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はクロム拡張機能を書きました。ユーザーが onclick で target=_blank を使用せずにクリックすると、すべての URL が新しいタブで開くようにしたいと思います。
どんな提案でも大歓迎です。
前もって感謝します。
$(document).click(function(e) { // Check for button click if (e.button == 0) { // left click window.open('http://google.com'); } else if (e.button == 3){//right click window.open('http://yahoo.com'); } });
これがお役に立てば幸いです