address bar

使用新的URL更新地址栏,而不散列或重新加载页面

喜欢而已 提交于 2020-08-16 13:11:27
问题: I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this. 我梦ed以求的是chrome(开发者通道)实现了一种无需重新加载页面即可通过javascript(地址而非域)更新地址栏的方法,或者他们确实做到了。 However, I can't find the article I think I read. 但是,我找不到我 想 读的文章。 Am I crazy or is there a way to do this (in Chrome)? 我疯了还是有办法做到这一点(在Chrome中)? ps I'm not talking about window.location.hash, et al. ps我不是在谈论window.location.hash等。 If the above exists the answer to this question will be untrue. 如果上述内容存在 ,则此问题的答案 将不成立。 解决方案: 参考一: https:/

Vimium不使用鼠标离开地址栏的方法

元气小坏坏 提交于 2020-08-10 20:04:30
使用 chrome 的 Vimium 扩展也有很长一段时间了,最大的好处是可以在浏览器使用 vim 下的热键,告别鼠标和触控板也能愉快玩耍。 虽然大部分时间都使用 cmd+O 打开 URL或者历史,但有时候还是要用 cmd+L 聚焦在地址栏,比如修改当前url,这时候如果想要把焦点从地址栏移走,很难在不通过鼠标操作的情况下实现,这样的方式内心当然是拒绝的,可一直也没什么好的办法。不过最近在StackExchange上找到 一个答案 ,能比较好地解决这个问题,分享给大家: 在 vimium 的 设置选项 里添加一个自定义搜索引擎 随便起一个名称,这里叫 leaveAddressBar 设置一个键盘热键,我这里使用 u . 在URL的输入栏内,填入 javascript: , 这是把焦点从地址栏转移到页面的关键! 即在 Custom search engines 文本框最后添加一行: u:javascript: leaveAddressBar 保存配置,以后只要在地址栏输入 u 回车,就可以把焦点移出地址栏了。Cool 😆 来源: oschina 链接: https://my.oschina.net/falcon10086/blog/4339261