对于阅读方式, 我们的目光需要从左侧移动到右侧聚焦, 对于大屏幕来说特别不友好
所以我觉得放在下面最合适, 所以 来个油猴来自己写个脚本
[JavaScript] 纯文本查看 复制代码 // ==UserScript==
// [url=home.php?mod=space&uid=170990]@name[/url] 52 page flot left
// [url=home.php?mod=space&uid=467642]@namespace[/url] [url]http://tampermonkey.net/[/url]
// [url=home.php?mod=space&uid=1248337]@version[/url] 0.1
// @description try to take over the world!
// [url=home.php?mod=space&uid=686208]@AuThor[/url] You
// [url=home.php?mod=space&uid=195849]@match[/url] [url]https://chrome.google.com/webstore/category/ext/7-productivity[/url]
// [url=home.php?mod=space&uid=593100]@Icon[/url] [url]https://www.google.com/s2/favicons?sz=64&domain=google.com[/url]
// [url=home.php?mod=space&uid=609072]@grant[/url] none
// @match *://*.52pojie.cn/*
// ==/UserScript==
(function() {
'use strict';
document.getElementsByClassName("bm bw0 pgs cl")[1].setAttribute("style", "float: left;");
// Your code here...
})(); |