看图优化,可以看高清大图
This commit is contained in:
parent
9a698e333a
commit
fa3373f143
105
tieba page.js
105
tieba page.js
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name tieba page
|
// @name tieba page
|
||||||
// @namespace https://github.com/fthvgb1/tampermonkey-script
|
// @namespace https://github.com/fthvgb1/tampermonkey-script
|
||||||
// @version 0.994
|
// @version 0.995
|
||||||
// @author fthvgb1
|
// @author fthvgb1
|
||||||
// @match https://tieba.baidu.com/*
|
// @match https://tieba.baidu.com/*
|
||||||
// @match https://tiebac.baidu.com/*
|
// @match https://tiebac.baidu.com/*
|
||||||
|
@ -16,45 +16,33 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
let obs;
|
let obs;
|
||||||
|
|
||||||
function gif3(v) {
|
function jpg(v) {
|
||||||
let imgs = v.querySelectorAll('img.BDE_Image');
|
let imgs = v.querySelectorAll('[data-class="BDE_Image"]:not([data-type="gif"])');
|
||||||
if (imgs.length > 0) {
|
if (imgs.length > 0) {
|
||||||
imgs.forEach(img => {
|
//debugger
|
||||||
let src = img.src.replace('tiebapic', 'imgsrc').replace('tiebapic', 'imgsrc');
|
imgs.forEach(value => {
|
||||||
let s = /&src=(.*)/.exec(src);
|
let h = value.dataset.url.replace('tiebapic', 'imgsrc').replace('tiebapic', 'imgsrc');
|
||||||
if (s != null) {
|
let tmp = h.split('&src=')[1];
|
||||||
let x = s.length > 0 ? s[1] : src;
|
value.outerHTML = `<img data-url="${tmp}" class="BDE_Image" src="${h}">`;
|
||||||
img.src = decodeURIComponent(x);
|
|
||||||
img.setAttribute('data-ss', img.src);
|
|
||||||
|
|
||||||
img.setAttribute('data-src', src)
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function gif(v) {
|
function gif(v) {
|
||||||
let imgs = v.querySelectorAll('div[data-class="BDE_Image"]');
|
let imgs = v.querySelectorAll('[data-type="gif"]');
|
||||||
if (imgs.length > 0) {
|
if (imgs.length > 0) {
|
||||||
imgs.forEach(value => {
|
imgs.forEach(value => {
|
||||||
let o = value.getAttribute('data-url').replace('tiebapic', 'imgsrc').replace('tiebapic', 'imgsrc');
|
let h = value.dataset.url.replace('tiebapic', 'imgsrc').replace('tiebapic', 'imgsrc');
|
||||||
let src = decodeURIComponent(value.getAttribute('data-url'));
|
let url = h.split('&src=')[1];
|
||||||
let s = /&src=(.*)/.exec(src);
|
let ssr = decodeURIComponent(url);
|
||||||
if (s != null) {
|
let x = ssr.split('/');
|
||||||
let ss = s[1];
|
let id = x[x.length - 1];
|
||||||
let img = document.createElement('img');
|
value.outerHTML = `<div class="pb_img_item" data-url="${h}"><img data-src="${h}" data-url="${id}" onclick="this.src=this.dataset.src;" class="BDE_Image" src="${ssr}" alt="gif"></div>`;
|
||||||
img.src = (ss);
|
|
||||||
img.className = 'BDE_Image';
|
|
||||||
img.setAttribute('data-src', o);
|
|
||||||
img.setAttribute('data-ss', ss);
|
|
||||||
value.outerHTML = `<div class="pb_img_item" data-url="${ss}">${img.outerHTML}</div>`;
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
gif3(v)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function delElement(selectors) {
|
function delElement(selectors) {
|
||||||
selectors.forEach(value => {
|
selectors.forEach(value => {
|
||||||
let x = document.querySelector(value);
|
let x = document.querySelector(value);
|
||||||
|
@ -76,10 +64,6 @@
|
||||||
if (t.nodeName !== 'IMG') {
|
if (t.nodeName !== 'IMG') {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (t.classList.contains('BDE_Image')) {
|
|
||||||
t.src = t.dataset.src;
|
|
||||||
obs = t
|
|
||||||
}
|
|
||||||
|
|
||||||
let imgs = $(t).parents('#pb_imgs_div');
|
let imgs = $(t).parents('#pb_imgs_div');
|
||||||
if (imgs.length > 0) {
|
if (imgs.length > 0) {
|
||||||
|
@ -265,6 +249,7 @@
|
||||||
}
|
}
|
||||||
delElement(['#diversBanner', '.j_videoFootDownBtn']);
|
delElement(['#diversBanner', '.j_videoFootDownBtn']);
|
||||||
gif(e);
|
gif(e);
|
||||||
|
jpg(e);
|
||||||
let ee = $(e);
|
let ee = $(e);
|
||||||
let tid = ee.attr("tid");
|
let tid = ee.attr("tid");
|
||||||
let x = ee.find('.list_item_top a.j_report_btn');
|
let x = ee.find('.list_item_top a.j_report_btn');
|
||||||
|
@ -385,6 +370,47 @@
|
||||||
return ua.indexOf('mobile') > -1 || ua.indexOf('phone');
|
return ua.indexOf('mobile') > -1 || ua.indexOf('phone');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function p() {
|
||||||
|
let c = document.querySelector('.slide_frame');
|
||||||
|
let MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
|
||||||
|
let observer = new MutationObserver((mutations) => {
|
||||||
|
mutations.forEach(item => {
|
||||||
|
if (item.addedNodes.length > 0) {
|
||||||
|
item.addedNodes.forEach(node => {
|
||||||
|
let img = node.querySelector('img');
|
||||||
|
if (img) {
|
||||||
|
let tmp = img.src.split('&src=');
|
||||||
|
let src = img.src;
|
||||||
|
if (tmp.length > 1) {
|
||||||
|
let newSrc = decodeURIComponent(tmp[1]);
|
||||||
|
img.src = newSrc;
|
||||||
|
let i = document.querySelector(`img[data-url="${tmp[1]}"]`);
|
||||||
|
if (i && i.src !== newSrc) {
|
||||||
|
i.src = newSrc;
|
||||||
|
i.addEventListener('click', evt => {
|
||||||
|
i.src = src;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
let x = img.src.split('/');
|
||||||
|
let u = x[x.length - 1];
|
||||||
|
let i = document.querySelector(`img[data-url="${u}"]`);
|
||||||
|
if (i && i.src !== img.src) {
|
||||||
|
i.src = img.src;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(c, {
|
||||||
|
childList: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function createTime() {
|
function createTime() {
|
||||||
let url = location.href.replace('&mo_device=1', '');
|
let url = location.href.replace('&mo_device=1', '');
|
||||||
|
|
||||||
|
@ -506,9 +532,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(list, {
|
observer.observe(list, {
|
||||||
attributes: true,
|
|
||||||
childList: true,
|
childList: true,
|
||||||
characterData: true
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function op() {
|
function op() {
|
||||||
|
@ -577,16 +601,11 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function detail() {
|
function detail() {
|
||||||
|
|
||||||
god();
|
god();
|
||||||
document.querySelector('a[class="ui_button ui_back j_span_back"]').addEventListener('click', event => {
|
p();
|
||||||
obs.src = obs.dataset.ss
|
|
||||||
});
|
|
||||||
|
|
||||||
reply();
|
reply();
|
||||||
|
|
||||||
|
|
||||||
document.querySelectorAll('ul#pblist>li').forEach(value => {
|
document.querySelectorAll('ul#pblist>li').forEach(value => {
|
||||||
if (value.classList.contains('class_hide_flag')) {
|
if (value.classList.contains('class_hide_flag')) {
|
||||||
value.classList.remove('class_hide_flag');
|
value.classList.remove('class_hide_flag');
|
||||||
|
@ -610,9 +629,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(list, {
|
observer.observe(list, {
|
||||||
attributes: true,
|
childList: true
|
||||||
childList: true,
|
|
||||||
characterData: true
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user