Greasy Fork is available in English.
Stop pixiv from cropping thumbnails to a square. Use higher resolution thumbnails on Retina displays.
当前为
// ==UserScript==
// @name Improve pixiv thumbnails
// @name:ja pixivサムネイルを改善する
// @namespace https://www.kepstin.ca/userscript/
// @version 20190912.5
// @description Stop pixiv from cropping thumbnails to a square. Use higher resolution thumbnails on Retina displays.
// @description:ja 正方形にトリミングされて表示されるのを防止します。Retinaディスプレイで高解像度のサムネイルを使用します。
// @author Calvin Walton
// @match https://www.pixiv.net/
// @match https://www.pixiv.net/bookmark.php*
// @match https://www.pixiv.net/bookmark_add.php*
// @match https://www.pixiv.net/bookmark_new_illust.php*
// @match https://www.pixiv.net/discovery
// @match https://www.pixiv.net/member.php*
// @match https://www.pixiv.net/member_illust.php*
// @match https://www.pixiv.net/new_illust.php*
// @match https://www.pixiv.net/new_illust_r18.php*
// @match https://www.pixiv.net/ranking.php*
// @match https://www.pixiv.net/search.php*
// @match https://www.pixiv.net/stacc*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// The src prefix: scheme and domain
let src_prefix = 'https://i.pximg.net';
// The src suffix for thumbnails
let thumb_suffix = '_master1200.jpg';
// A regular expression that matches pixiv thumbnail urls
// Has 3 captures:
// $1: thumbnail width (optional)
// $2: thumbnail height (optional)
// $3: everything in the URL after the thumbnail size up to the image suffix
let src_regexp = /https?:\/\/i\.pximg\.net(?:\/c\/(\d+)x(\d+)(?:_[^\/]*)?)?\/(?:custom-thumb|img-master)\/(.*)_(?:custom|master|square)1200.jpg/;
// Create a srcset= attribute on the img, with appropriate dpi scaling values
function imgSrcset(img, size, url_stuff) {
if (150 / size >= window.devicePixelRatio) {
img.src = `${src_prefix}/c/150x150/img-master/${url_stuff}${thumb_suffix}`;
} else if (240 / size >= window.devicePixelRatio) {
img.src = `${src_prefix}/c/240x240/img-master/${url_stuff}${thumb_suffix}`;
} else if (360 / size >= window.devicePixelRatio) {
img.src = `${src_prefix}/c/360x360_70/img-master/${url_stuff}${thumb_suffix}`;
} else if (600 / size >= window.devicePixelRatio) {
img.src = `${src_prefix}/c/600x600/img-master/${url_stuff}${thumb_suffix}`;
} else { /* 1200 */
img.src = `${src_prefix}/img-master/${url_stuff}${thumb_suffix}`;
}
img.srcset = `${src_prefix}/c/150x150/img-master/${url_stuff}${thumb_suffix} ${150 / size}x,
${src_prefix}/c/240x240/img-master/${url_stuff}${thumb_suffix} ${240 / size}x,
${src_prefix}/c/360x360_70/img-master/${url_stuff}${thumb_suffix} ${360 / size}x,
${src_prefix}/c/600x600/img-master/${url_stuff}${thumb_suffix} ${600 / size}x,
${src_prefix}/img-master/${url_stuff}${thumb_suffix} ${1200 / size}x`;
}
// Reconfigure a thumbnail set via css background image (usually on a div tag)
function cssBackgroundImage(element) {
// In the future this should use https://developer.mozilla.org/en-US/docs/Web/CSS/image-set
// but right now only chrome/safari have a vendor-prefixed version. Manually pick the image
// based on the devicePixelRatio.
let size = Math.max(element.clientWidth, element.clientHeight);
let m = element.style.backgroundImage.match(src_regexp);
if (!m) { console.log("unsupported image url for thumbnail fixer", element); return false; }
if (150 / size >= window.devicePixelRatio) {
element.style.backgroundImage = `url(${src_prefix}/c/150x150/img-master/${m[3]}${thumb_suffix})`;
} else if (240 / size >= window.devicePixelRatio) {
element.style.backgroundImage = `url(${src_prefix}/c/240x240/img-master/${m[3]}${thumb_suffix})`;
} else if (360 / size >= window.devicePixelRatio) {
element.style.backgroundImage = `url(${src_prefix}/c/360x360_70/img-master/${m[3]}${thumb_suffix})`;
} else if (600 / size >= window.devicePixelRatio) {
element.style.backgroundImage = `url(${src_prefix}/c/600x600/img-master/${m[3]}${thumb_suffix})`;
} else { /* 1200 */
element.style.backgroundImage = `url(${src_prefix}/img-master/${m[3]}${thumb_suffix})`;
}
return true;
}
function findParentSize(node) {
let size = 0;
let e = node;
while (!size) {
if (e.attributes.width && e.attributes.height) {
let width = +e.attributes.width.value;
let height = +e.attributes.height.value;
if (width && width > size) { size = width; }
if (height && height > size) { size = height; }
return size;
}
if (!e.parentElement) {
console.log("Couldn't find a parent node with size set for", node);
return size;
}
e = e.parentElement;
}
}
function handleImg(node) {
if (node.dataset.kepstinThumbnail) { return; }
if (!node.src.startsWith(src_prefix)) { node.dataset.kepstinThumbnail = 'skip'; return; }
let m = node.src.match(src_regexp);
if (!m) { node.dataset.kepstinThumbnail = 'bad'; return; }
let size = findParentSize(node);
imgSrcset(node, size, m[3]);
node.style.objectFit = 'contain';
node.dataset.kepstinThumbnail = 'ok';
}
function handleLayoutThumbnail(node) {
if (node.dataset.kepstinThumbnail) { return; }
if (/transparent.gif$/.test(node.src)) { return; }
let m = node.src.match(src_regexp);
if (!m) { node.dataset.kepstinThumbnail = 'bad'; return; }
let size = Math.max(m[1], m[2]);
if (!size) { size = 1200 };
imgSrcset(node, size, m[3]);
node.width = node.style.width = m[1];
node.height = node.style.height = m[2];
node.style.objectFit = 'contain';
node.dataset.kepstinThumbnail = 'ok';
}
function onetimeThumbnails(parentNode) {
for (let node of parentNode.querySelectorAll('img')) {
if (node.parentElement.classList.contains('_layout-thumbnail')) {
handleLayoutThumbnail(node);
} else {
handleImg(node);
}
}
}
function handleDiscoveryDiv(node) {
if (node.classList.contains('js-lazyload') || node.classList.contains('lazyloaded') || node.classList.contains('lazyloading')) { return; }
if (node.dataset.kepstinThumbnail) { return; }
if (cssBackgroundImage(node)) {
node.dataset.kepstinThumbnail = 'ok';
}
}
function mutationObserverCallback(mutationList, observer) {
for (let mutation of mutationList) {
switch (mutation.type) {
case 'childList':
for (let node of mutation.addedNodes) {
if (node.nodeName == 'IMG') {
handleImg(node);
} else if (node.nodeName == 'DIV') {
if (node.parentElement && node.parentElement.classList.contains('gtm-illust-recommend-thumbnail-link')) {
handleDiscoveryDiv(node);
} else {
onetimeThumbnails(node);
}
}
}
break;
case 'attributes':
if (mutation.target.nodeName == 'DIV') {
if (mutation.target.parentElement.classList.contains('gtm-illust-recommend-thumbnail-link')) {
handleDiscoveryDiv(mutation.target);
}
} else if (mutation.target.nodeName == 'IMG') {
if (mutation.target.parentElement.classList.contains('_layout-thumbnail')) {
handleLayoutThumbnail(mutation.target);
}
}
break;
}
}
}
if (!window.kepstinThumbnailObserver) {
onetimeThumbnails(document.firstElementChild);
window.kepstinThumbnailObserver = new MutationObserver(mutationObserverCallback);
window.kepstinThumbnailObserver.observe(document.firstElementChild, { childList: true, subtree: true, attributes: true, attributeFilter: [ 'class', 'src' ] });
}
})();