Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

中键打开标签会打个两个窗口 #9

Closed
Jh623 opened this issue Aug 15, 2018 · 5 comments
Closed

中键打开标签会打个两个窗口 #9

Jh623 opened this issue Aug 15, 2018 · 5 comments

Comments

@Jh623
Copy link

Jh623 commented Aug 15, 2018

为什么不更新了呢? 那么多书签管理器就喜欢这个......

@windviki
Copy link
Owner

谢谢支持。主要暂时没有非常迫切的新功能需求和严重的使用障碍,几年一直平稳地用过来了:) 。如果有好的想法欢迎提出。

@Jh623
Copy link
Author

Jh623 commented Oct 31, 2018

谢谢支持。主要暂时没有非常迫切的新功能需求和严重的使用障碍,几年一直平稳地用过来了:) 。如果有好的想法欢迎提出。

新版chrome中键打开标签会打个两个窗口, 这个可以修复么?

@windviki
Copy link
Owner

windviki commented Nov 9, 2018

发现了这个问题,没有仔细调查。
目前暂时可以通过使用左键单击来代替。左键单击可以在扩展的设置页面选择是在后台还是前台打开。
如果有时间,应该可以在下个版本解决。

@ykleungd
Copy link

ykleungd commented May 2, 2019

新版chrome中键打开标签会打个两个窗口, 这个可以修复么?

我写了个CSS可以解决这问题,在 Advanced Options 贴上就行了

li:not(.parent):hover {
text-decoration: underline;
}

a {
text-decoration: inherit;
cursor: default;
pointer-events: none;
}

li:active>a {
pointer-events: auto;
}

a:hover {
pointer-events: none !important;
}

a:focus {
pointer-events: auto !important;
}

li:hover>a:hover {
pointer-events: auto !important;
}

#search {
position: relative;
top: -3px;
margin: 0 -1px -5px -1px;
}

#search input {
padding: 6px 8px;
margin: 0;
}

::-webkit-scrollbar-track-piece {
background-color: #fff;
-webkit-border-radius: 0;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-thumb {
height: 50px;
background-color: #999;
-webkit-border-radius: 4px;
outline: 2px solid #fff;
outline-offset: -2px;
border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
height: 50px;
background-color: #9f9f9f;
-webkit-border-radius: 4px;
}

#tree,
#results {
background: #fff;
}

a,
span {
font-family: Arial, sans-serif;
font-size: 12px;
padding-top: 3px !important;
padding-bottom: 3px !important;
text-shadow: none;
}

windviki added a commit that referenced this issue May 6, 2019
Fixed: Open URL twice when clicked by middle button of mouse. #9
Fixed: Sometimes search will fail. #7
Fixed: Context menu position.
Improved: CSS style.
Added: Placeholder "\_\_VBM_CURRENT_TAB_URL\_\_" in bookmark URL to make some bookmarklets work (Chrome does not allow _document.location.href_ in BMlet). It will be replaced with URL of current active tab when you click BMlet from vBookmarks.
@windviki
Copy link
Owner

windviki commented May 6, 2019

Fixed in a353198
去除以前的模拟中键处理即可。
多谢 @ykleungd 的CSS改进。
滚动条和搜索栏的相当不错,我将其写入默认CSS。
pointer-events: none在新版本里应该可以去掉了。

@windviki windviki closed this as completed May 6, 2019
@windviki windviki changed the title 为什么不更新了呢? 中键打开标签会打个两个窗口 May 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants