10月

pubdate:2020-10-27 18:07:09
tags:总结

2020/10/24

打算申请 jetbrains 的开源许可证

使用了 userJs 这个项目来申请

[表单]项目描述

这是一个包含了多个油猴脚本的开源项目,旨在改善人民在浏览器里浏览其他网页的一些体验。例如为所有网站提供可用的高亮功能。在恰当的时机隐藏顶部固定栏等。
This is an open source project containing several Grease Monkey scripts designed to improve some of the experiences people have when browsing other Web pages in their browsers. For example, providing highlighting features available for all websites. Hide the top fixed bar at the right time etc.
提交表单后得到回信
[ ] 等待审核回信中...

Chrome 没有正常安装或者安装的是开发版 Chrome 导致 vs code 中的 debugger for Chrome 插件无法找到 Chrome 的解决方案

今天在尝试直接使用 Chrome 调试遇到这个错 Unable to launch browser: "Unable to find a Chrome installation on your system. Try installing it, or providing an absolute path to the browser in the “runtimeExecutable” in your launch.json. 原因如标题所述。
解决方案 添加 runtimeExecutable 表明 Chrome 的真正安装地址

隐藏滚动条 代码片段

CSS
.demo::-webkit-scrollbar { display: none; /* Chrome Safari */ } .demo { scrollbar-width: none; /* firefox */ -ms-overflow-style: none; /* IE 10+ */ overflow-x: hidden; overflow-y: auto; }