Compare commits

...

3 Commits

Author SHA1 Message Date
7073022b93
Fix: variable name 2024-11-21 12:06:39 +08:00
e6a5e42582
Chore: release v1.1.0 2024-11-21 12:03:36 +08:00
ce25f86708
Feat: new aps style 2024-11-21 12:00:56 +08:00

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Journal Viewer // @name Journal Viewer
// @namespace https://foolishfox.cn // @namespace https://foolishfox.cn
// @version 1.0.0 // @version 1.1.1
// @description Optimize the online reading experience of journal articles // @description Optimize the online reading experience of journal articles
// @author YiHui-Liu (foolishfox) // @author YiHui-Liu (foolishfox)
// @match https://journals.aps.org/* // @match https://journals.aps.org/*
@ -15,27 +15,25 @@
(function () { (function () {
'use strict'; 'use strict';
// APS // Old APS
let aps_sidebar = document.getElementById("article-sidebar"); let aps_sidebar = document.getElementById("article-sidebar");
if (aps_sidebar) if (aps_sidebar) { aps_sidebar.remove(); }
aps_sidebar.remove();
let aps_content = document.getElementById("article-content"); let aps_content = document.getElementById("article-content");
if (aps_content) if (aps_content) { aps_content.style.width = "100%"; }
aps_content.style.width = "100%";
// New APS
let aps_sidebar_n = document.getElementById("sidebar-wrapper");
if (aps_sidebar_n) { aps_sidebar_n.remove(); }
// Science Direct // Science Direct
let sd_sidebar = document.getElementsByClassName("u-display-block-from-md col-lg-6 col-md-8 pad-right u-padding-s-top")[0]; let sd_sidebar = document.getElementsByClassName("u-display-block-from-md col-lg-6 col-md-8 pad-right u-padding-s-top")[0];
if (sd_sidebar) if (sd_sidebar) { sd_sidebar.remove(); }
sd_sidebar.remove();
let sd_content = document.getElementsByClassName("col-lg-12 col-md-16 pad-left pad-right u-padding-s-top")[0]; let sd_content = document.getElementsByClassName("col-lg-12 col-md-16 pad-left pad-right u-padding-s-top")[0];
if (sd_content) if (sd_content) { sd_content.style.width = "75%"; }
sd_content.style.width = "75%";
// Nature // Nature
let nature_sidebar = document.getElementsByClassName("c-article-extras u-hide-print")[0]; let nature_sidebar = document.getElementsByClassName("c-article-extras u-hide-print")[0];
if (nature_sidebar) if (nature_sidebar) { nature_sidebar.remove(); }
nature_sidebar.remove();
let nature_content = document.getElementsByClassName("c-article-main-column u-float-left js-main-column")[0]; let nature_content = document.getElementsByClassName("c-article-main-column u-float-left js-main-column")[0];
if (nature_content) if (nature_content) { nature_content.style.width = "100%"; }
nature_content.style.width = "100%";
})(); })();