llsongll

llsongll

V2EX 第 531011 号会员,加入于 2021-01-29 11:26:51 +08:00
根据 llsongll 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
llsongll 最近回复了
求码 谢谢 MzgxMzExNjM2QHFxLmNvbQ==
16 天前
回复了 llsongll 创建的主题 问与答 arc 临时页面到底好用不好用
@muunala10221 #2 大概意思是我认为临时页面的作用在于减少打开多个标签页,但是不知道这个功能对于浏览网页来说,有没有必要。感觉不错和有没有用,其实不冲突。
16 天前
回复了 llsongll 创建的主题 问与答 arc 临时页面到底好用不好用
// ==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('请允许弹出窗口以查看链接!');
}
}
}
});
})();
应该是当前页面不前置,就停止回答吧,切别的应用应该没事。
我是两个浏览器一起用,一个单独用 bing ,就没事了
支持一下 凑个热闹
44 天前
回复了 llsongll 创建的主题 NAS 如何把一台旧 MacBook 改成 nas?
@sjhhjx0122 #4 请问是用公网 ip 吗?还是内网穿透?有什么好的办法吗?
@seeleywang123 #36 我刚买的 m1pro 。。。
51 天前
回复了 aoling 创建的主题 分享创造 ChatHub 一个各种 AI 的 chrome 聚合插件
@llsongll #1 放弃了,Vivaldi 用不了 bing
51 天前
回复了 aoling 创建的主题 分享创造 ChatHub 一个各种 AI 的 chrome 聚合插件
还有吗
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2913 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 9ms · UTC 14:17 · PVG 22:17 · LAX 06:17 · JFK 09:17
Developed with CodeLauncher
♥ Do have faith in what you're doing.