试用了一下 arc ,其他都没觉得咋样,这个临时页面感觉不错,但是用惯了 vivaldi 浏览器,就想找个别的办法实现一下。
插件找了好多,不是打开链接后没法用其他插件的,(必须夜间模式网页),就是都必须右键打开弹出窗口,无法实现 shift+单击打开。
我也试了用 gpt 写了个油猴脚本,确实在 Chrome 实现了 shift+单击打开弹出窗口,但 vivaldi 不行。。。
不知道为啥。。
vivaldi 主要操作:
问题:
1
llsongll OP // ==UserScript==
// @name 打开链接弹出框 // @namespace http://your.namespace.com // @version 0.1 // @description 在按下 Shift 键的同时单击左键时,在弹出框中打开链接 // @author Your Name // @match http://*/* // @match https://*/* // @grant none // ==/UserScript== (function() { document.addEventListener('click', function(event) { if (event.shiftKey && event.button === 0) { event.preventDefault(); var targetElement = event.target; while (targetElement && targetElement.tagName !== 'A') { targetElement = targetElement.parentElement; } if (targetElement && targetElement.tagName === 'A') { var url = targetElement.href; var popupWidth = 600; var popupHeight = 400; var left = (window.innerWidth - popupWidth) / 2; var top = (window.innerHeight - popupHeight) / 2; var popup = window.open(url, '_blank', 'width=' + popupWidth + ',height=' + popupHeight + ',top=' + top + ',left=' + left); if (popup) { popup.focus(); } else { alert('请允许弹出窗口以查看链接!'); } } } }); })(); |
2
muunala10221 363 天前
看不懂你想问啥:
标题 :arc 临时页面到底好用不好用 正文:试用了一下 arc ,其他都没觉得咋样,这个临时页面感觉不错 (好用? 问题:临时页面到底有没有用? ? ??? |
3
llsongll OP @muunala10221 #2 大概意思是我认为临时页面的作用在于减少打开多个标签页,但是不知道这个功能对于浏览网页来说,有没有必要。感觉不错和有没有用,其实不冲突。
|