|
发表于 2024-3-5 23:45:14
|
显示全部楼层
也许你可以尝试写一个类似下面这样的油猴脚本:
- // ==UserScript==
- // @name scroll-letf
- // @version 0.1.0
- // @description description
- // @author dragonish
- // @namespace https://github.com/dragonish
- // @license GNU General Public License v3.0 or later
- // @match *://*/*
- // @grant none
- // ==/UserScript==
- (function () {
- window.addEventListener('load', () => {
- console.log('auto scroll!');
- setTimeout(() => {
- window.scrollTo({
- left: (document.documentElement.scrollWidth - document.documentElement.clientWidth) / 2,
- });
- }, 0);
- });
- })();
复制代码
不过上面这种写法不一定能保证在某些特定网址正常工作,这可能需要根据具体网站的布局来处理;另外建议将 match 限定至所需的网站即可。 |
|