// ==UserScript== // @name Pixiv Plus // @name:zh-CN Pixiv 增强 // @name:zh-TW Pixiv 增強 // @namespace https://github.com/Ahaochan/Tampermonkey // @version 0.8.2 // @icon http://www.pixiv.net/favicon.ico // @description Focus on immersive experience, 1. Block ads, directly access popular pictures 2. Use user to enter the way to search 3. Search pid and uid 4. Display original image and size, picture rename, download original image | gif map | Zip|multiple map zip 5. display artist id, artist background image 6. auto load comment 7. dynamic markup work type 8. remove redirection 9. single page sort 10. control panel select desired function github: https:/ /github.com/Ahaochan/Tampermonkey, welcome to star and fork. // @description:ja 没入型体験に焦点を当てる、1.人気の写真に直接アクセスする広告をブロックする2.検索する方法を入力するためにユーザーを使用する3.検索pidとuid 4.元の画像とサイズを表示する Zip | multiple map zip 5.アーティストID、アーティストの背景画像を表示します。6.自動ロードコメントを追加します。7.動的マークアップ作業タイプを指定します。8.リダイレクトを削除します。9.シングルページソート10.コントロールパネルを選択します。github:https:/ /github.com/Ahaochan/Tampermonkey、スターとフォークへようこそ。 // @description:zh-CN 专注沉浸式体验,1.屏蔽广告,直接访问热门图片 2.使用users入り的方式搜索 3.搜索pid和uid 4.显示原图及尺寸,图片重命名,下载原图|gif图|动图帧zip|多图zip 5.显示画师id、画师背景图 6.自动加载评论 7.对动态标记作品类型 8.去除重定向 9.单页排序 10.控制面板选择想要的功能 github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。 // @description:zh-TW 專注沉浸式體驗,1.屏蔽廣告,直接訪問熱門圖片2.使用users入り的方式搜索3.搜索pid和uid 4.顯示原圖及尺寸,圖片重命名,下載原圖|gif圖|動圖幀zip|多圖zip 5.顯示畫師id、畫師背景圖6.自動加載評論7.對動態標記作品類型8.去除重定向9.單頁排序10.控制面板選擇想要的功能github:https:/ /github.com/Ahaochan/Tampermonkey,歡迎star和fork。 // @author Ahaochan // @include http*://www.pixiv.net* // @match http://www.pixiv.net/ // @connect i.pximg.net // @connect i-f.pximg.net // @connect i-cf.pximg.net // @license GPL-3.0 // @supportURL https://github.com/Ahaochan/Tampermonkey // @grant unsafeWindow // @grant GM.xmlHttpRequest // @grant GM.setClipboard // @grant GM.setValue // @grant GM.getValue // @grant GM_addStyle // @grant GM_xmlhttpRequest // @grant GM_setClipboard // @grant GM_setValue // @grant GM_getValue // @require https://cdn.bootcdn.net/ajax/libs/jquery/2.2.4/jquery.min.js // @require https://cdn.bootcss.com/jszip/3.1.4/jszip.min.js // @require https://cdn.bootcss.com/FileSaver.js/1.3.2/FileSaver.min.js // @require https://greasyfork.org/scripts/2963-gif-js/code/gifjs.js?version=8596 // @require https://greasyfork.org/scripts/375359-gm4-polyfill-1-0-1/code/gm4-polyfill-101.js?version=652238 // @run-at document-end // @noframes // @downloadURL none // ==/UserScript== jQuery(function ($) { 'use strict'; // 加载依赖 // ============================ jQuery插件 ==================================== $.fn.extend({ fitWindow: function () { this.css('width', 'auto').css('height', 'auto') .css('max-width', '').css('max-height', $(window).height()); }, replaceTagName: function (replaceWith) { var tags = [], i = this.length; while (i--) { var newElement = document.createElement(replaceWith), thisi = this[i], thisia = thisi.attributes; for (var a = thisia.length - 1; a >= 0; a--) { var attrib = thisia[a]; newElement.setAttribute(attrib.name, attrib.value); } newElement.innerHTML = thisi.innerHTML; $(thisi).after(newElement).remove(); tags[i] = newElement; } return $(tags); }, getBackgroundUrl: function () { let imgUrls = []; this.each(function (index, ele) { let bgUrl = $(this).css('background-image') || ele.style.backgroundImage || 'url("")'; let matchArr = bgUrl.match(/url\((['"])(.*?)\1\)/); bgUrl = matchArr && matchArr.length >= 2 ? matchArr[2] : ''; imgUrls.push(bgUrl); }); return imgUrls.length === 1 ? imgUrls[0] : imgUrls; } }); // ============================ 全局参数 ==================================== let globalData, preloadData; let initData = function() { $.ajax({ url: location.href, async: false, success: response => { let html = document.createElement( 'html' ); html.innerHTML = response; globalData = JSON.parse($(html).find('meta[name="global-data"]').attr('content') || '{}'); preloadData = JSON.parse($(html).find('meta[name="preload-data"]').attr('content') || '{}'); } }); }; let getPreloadData = function () { if(!preloadData) { initData(); } return preloadData; }; let getGlobalData = function () { if(!globalData) { initData(); } return globalData; }; let lang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase(), illustJson = {}; let illust = function () { // 1. 判断是否已有作品id(兼容按左右方向键翻页的情况) let preIllustId = $('body').attr('ahao_illust_id'); let paramRegex = location.href.match(/artworks\/(\d*)$/); let urlIllustId = !!paramRegex && paramRegex.length > 0 ? paramRegex[1] : ''; // 2. 如果illust_id没变, 则不更新json if (parseInt(preIllustId) === parseInt(urlIllustId)) { return illustJson; } // 3. 如果illust_id变化, 则持久化illust_id, 且同步更新json if (!!urlIllustId) { $('body').attr('ahao_illust_id', urlIllustId); $.ajax({ url: '/ajax/illust/' + urlIllustId, dataType: 'json', async: false, success: response => illustJson = response.body }); } return illustJson; }; let getUid = function () { if(!preloadData || !preloadData.user || !Object.keys(preloadData.user)[0]) { initData(); } return preloadData && preloadData.user && Object.keys(preloadData.user)[0]; }; let observerFactory = function (option) { let options; if (typeof option === 'function') { options = { callback: option, node: document.getElementsByTagName('body')[0], option: {childList: true, subtree: true} }; } else { options = $.extend({ callback: () => { }, node: document.getElementsByTagName('body')[0], option: {childList: true, subtree: true} }, option); } let MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver, observer = new MutationObserver((mutations, observer) => { options.callback.call(this, mutations, observer); // GM.getValue('MO', true).then(function (v) { if(!v) observer.disconnect(); }); }); observer.observe(options.node, options.option); return observer; }; let isLogin = function () { let status = 0; $.ajax({url: 'https://www.pixiv.net/setting_user.php', async: false}) .done((data, statusText, xhr) => status = xhr.status); return status === 200; }; // ============================ 配置信息 ==================================== let GMkeys = { MO: 'MO', // MutationObserver 的开关 selectorShareBtn: 'selectorShareBtn', // 下载按钮的selector selectorRightColumn: 'selectorRightColumn', // 作品页面的作者信息selector switchImgSize: 'switch-img-size', // 是否显示图片大小的开关 switchImgPreload: 'switch-img-preload', // 是否预下载的开关 switchComment: 'switch-comment', // 是否自动加载评论的开关 switchOrderByPopular: 'switch-order-by-popular',// 是否按收藏数排序的开关(单页排序) downloadName: 'download-name', // 下载名pattern }; // ============================ i18n 国际化 =============================== let i18nLib = { ja: { favorites: 'users入り', }, en: { favorites: 'favorites', illegal: 'illegal', download: 'download', download_wait: 'please wait download completed', copy_to_clipboard: 'copy to Clipboard', background: 'background', background_not_found: 'no-background', loginWarning: 'Pixiv Plus Script Warning! Please login to Pixiv for a better experience! Failure to login may result in unpredictable bugs!', illust_type_single: '[single pic]', illust_type_multiple: '[multiple pic]', illust_type_gif: '[gif pic]', sort_by_popularity: 'Sort_by_popularity(single page)' }, ko: {}, zh: { favorites: '收藏人数', illegal: '不合法', download: '下载', download_wait: '请等待下载完成', copy_to_clipboard: '已复制到剪贴板', background: '背景图', background_not_found: '无背景图', loginWarning: 'Pixiv增强 脚本警告! 请登录Pixiv获得更好的体验! 未登录可能产生不可预料的bug!', illust_type_single: '[单图]', illust_type_multiple: '[多图]', illust_type_gif: '[gif图]', sort_by_popularity: '按收藏数搜索(单页)' }, 'zh-cn': {}, 'zh-tw': { favorites: '收藏人數', illegal: '不合法', download: '下載', download_wait: '請等待下載完成', copy_to_clipboard: '已復製到剪貼板', background: '背景圖', background_not_found: '無背景圖', loginWarning: 'Pixiv增強 腳本警告! 請登錄Pixiv獲得更好的體驗! 未登錄可能產生不可預料的bug!', illust_type_single: '[單圖]', illust_type_multiple: '[多圖]', illust_type_gif: '[gif圖]', sort_by_popularity: '按收藏數搜索(單頁)' } }; i18nLib['zh-cn'] = $.extend({}, i18nLib.zh); // TODO 待翻译 i18nLib.ja = $.extend({}, i18nLib.en, i18nLib.ja); i18nLib.ko = $.extend({}, i18nLib.en, i18nLib.ko); let i18n = key => i18nLib[lang][key] || `i18n[${lang}][${key}] not found`; // ============================ url 页面判断 ============================== let isArtworkPage = () => /.+artworks\/\d+.*/.test(location.href); let isMemberIndexPage = () => /.+\/users\/\d+.*/.test(location.href); let isMemberIllustPage = () => /.+\/member_illust\.php\?id=\d+/.test(location.href); let isMemberBookmarkPage = () => /.+\/bookmark\.php\?id=\d+/.test(location.href); let isMemberFriendPage = () => /.+\/mypixiv_all\.php\?id=\d+/.test(location.href); let isMemberDynamicPage = () => /.+\/stacc.+/.test(location.href); let isMemberPage = () => isMemberIndexPage() || isMemberIllustPage() || isMemberBookmarkPage() || isMemberFriendPage(), isSearchPage = () => /.+\/search\.php.*/.test(location.href) || /.+\/tags\/.*\/artworks.*/.test(location.href); // 判断是否登录 if (!isLogin()) { alert(i18n('loginWarning')); } // 1. 屏蔽广告, 全局进行css处理 (function () { // 1. 删除静态添加的广告 $('.ad').remove(); $('._premium-lead-tag-search-bar').hide(); $('.popular-introduction-overlay').hide();// 移除热门图片遮罩层 $('.ad-footer').remove();//移除页脚广告 // 2. 删除动态添加的广告 let adSelectors = ['iframe', '._premium-lead-promotion-banner', 'a[href="/premium/lead/lp?g=anchor&i=popular_works_list&p=popular&page=visitor"]' // https://www.pixiv.net/tags/%E6%9D%B1%E6%96%B9/artworks?s_mode=s_tag 热门作品 ]; observerFactory(function (mutations, observer) { mutations.forEach(function (mutation) { if (mutation.type !== 'childList') { return; } let $parent = $(mutation.target).parent(); // 2.1. 隐藏广告 let $ad = $parent.find(adSelectors.join(',')); $ad.hide(); }); }); })(); // 2/3. 搜索增强 (function () { observerFactory(function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i]; // 1. 判断是否改变节点, 或者是否有[form]节点 let $form = $('#js-mount-point-header form:not([action]), #root div[style="position: static; z-index: auto;"] form:not([action])'); if (mutation.type !== 'childList' || !$form.length) { continue; } console.log("搜索增强 初始化"); // 2. 修改父级grid布局 $form.parent().parent().css('grid-template-columns', '2fr 2fr 2fr minmax(auto, 528px) 1fr 2fr'); // 3. 搜索UID和PID (function ($form) { let initSearch = function (option) { let options = $.extend({$form: null, placeholder: '', url: ''}, option); if(!options.$form) { console.log('搜索UID和PID 初始化失败, form元素获取失败'); } // 1. 初始化表单UI let $parent = options.$form.parent().clone(); let $form = $parent.find('form'); $form.children('div').eq(1).remove(); $form.attr('class', 'ahao-search'); options.$form.parent().before($parent); let $input = $form.find('input[type="text"]:first'); $input.attr('placeholder', options.placeholder); $input.val(''); // 2. 绑定submit事件 $form.submit(function (e) { e.preventDefault(); let id = $input.val(); // 2.1. ID 必须为纯数字 if (!/^[0-9]+$/.test(id)) { let label = options.placeholder + i18n('illegal'); alert(label); return; } // 2.2. 新窗口打开url let url = option.url + id; window.open(url); // 2.3. 清空input等待下次输入 $input.val(''); }); }; initSearch({$form: $form, placeholder: 'UID', url: 'https://www.pixiv.net/users/'}); initSearch({$form: $form, placeholder: 'PID', url: 'https://www.pixiv.net/artworks/'}); })($form); // 4. 搜索条件 (function ($form) { let label = i18n('favorites'); // users入り let $input = $form.find('input[type="text"]:first'); let $select = $(` `); $select.on('change', function () { if (!!$input.val()) { $form.submit(); }}); $form.parent().after($select); $form.submit(function (e) { e.preventDefault(); if(!!$select.val()) { // 2.4.1. 去除旧的搜索选项 $input.val((index, val) => val.replace(/\d*users入り/g, '')); $input.val((index, val) => val.replace(/\d*$/g, '')); // 2.4.2. 去除多余空格 $input.val((index, val) => val.replace(/\s\s*/g, '')); $input.val((index, val) => val + ' '); // 2.4.3. 添加新的搜索选项 $input.val((index, val) => `${val}${$select.val()}`); } let value = $input.val(); if(!!value) { location.href = `https://www.pixiv.net/tags/${value}/artworks?s_mode=s_tag`; } }); })($form); observer.disconnect(); break; } }); })(); // 4. 单张图片替换为原图格式. 追加下载按钮, 下载gif图、gif的帧压缩包、多图 (async function () { if (!isArtworkPage()) { return; } // 1. 初始化方法 let initDownloadBtn = function (option) { // 下载按钮, 复制分享按钮并旋转180度 let options = $.extend({ $shareButtonContainer: undefined, id: '', text: '', clickFun: () => {} }, option); let $downloadButtonContainer = options.$shareButtonContainer.clone(); $downloadButtonContainer.addClass('ahao-download-btn') .attr('id', options.id) .removeClass(options.$shareButtonContainer.attr('class')) .css('margin-right', '10px') .css('position', 'relative') .css('border', '1px solid') .css('padding', '1px 10px') .append(`
${options.text}
`); $downloadButtonContainer.find('button').css('transform', 'rotate(180deg)') .on('click', options.clickFun); options.$shareButtonContainer.after($downloadButtonContainer); return $downloadButtonContainer; }; let addImgSize = async function (option) { // 从 $img 获取图片大小, after 到 $img let options = $.extend({ $img: undefined, position: 'absolute', }, option); let $img = options.$img, position = options.position; if ($img.length !== 1) { return; } GM.getValue(GMkeys.switchImgSize, true).then(open => { if (!!open) { // 1. 找到 显示图片大小 的 span, 没有则添加 let $span = $img.next('span'); if ($span.length <= 0) { // 添加前 去除失去依赖的 span $('body').find('.ahao-img-size').each(function () { let $this = $(this), $prev = $this.prev('canvas, img'); if ($prev.length <= 0) { $this.remove(); } }); $img.after(``); } // 2. 根据标签获取图片大小, 目前只有 canvas 和 img 两种 if ($img.prop('tagName') === 'IMG') { let img = new Image(); img.src = $img.attr('src'); img.onload = function () { $span.text(`${this.width}x${this.height}`); }; } else { let width = $img.attr('width') || $img.css('width').replace('px', '') || $img.css('max-width').replace('px', '') || 0; let height = $img.attr('height') || $img.css('height').replace('px', '') || $img.css('max-height').replace('px', '') || 0; $span.text(`${width}x${height}`); } } }); }; let mimeType = suffix => { let lib = {png: "image/png", jpg: "image/jpeg", gif: "image/gif"}; return lib[suffix] || `mimeType[${suffix}] not found`; }; let getDownloadName = (name) => { name = name.replace('{pid}', illust().illustId); name = name.replace('{uid}', illust().userId); name = name.replace('{pname}', illust().illustTitle); name = name.replace('{uname}', illust().userName); return name; }; let isMoreMode = () => illust().pageCount > 1, isGifMode = () => illust().illustType === 2, isSingleMode = () => (illust().illustType === 0 || illust().illustType === 1) && illust().pageCount === 1; let selectorShareBtn = await GM.getValue(GMkeys.selectorShareBtn, '.UXmvz'); // section 下的 div // 热修复下载按钮的className observerFactory(function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i], $target = $(mutation.target); if($target.prop('tagName').toLowerCase() !== 'section') continue; let $section = $target.find('section'); if($section.length <= 0) continue; let className = $section.eq(0).children('div').eq(1).attr('class').split(' ')[1]; GM.setValue(GMkeys.selectorShareBtn, `.${className}`); observer.disconnect(); return; } }); // 显示单图、多图原图 observerFactory({ callback: function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i], $target = $(mutation.target); let replaceImg = function ($target, attr, value) { let oldValue = $target.attr(attr); if (new RegExp(`https?://i(-f|-cf)?\.pximg\.net.*\/${illust().id}_.*`).test(oldValue) && !new RegExp(`https?://i(-f|-cf)?\.pximg\.net/img-original.*`).test(oldValue)) { $target.attr(attr, value).css('filter', 'none'); $target.fitWindow(); } }; // 1. 单图、多图 DOM 结构都为' + (isMultiPic ? i18n('illust_type_multiple') : i18n('illust_type_single')) + '
'); break; case 2: $a.after('' + i18n('illust_type_gif') + '
'); break; } } }); }) } }); })(); // 8. 对jump.php取消重定向 (function () { let jumpSelector = 'a[href*="jump.php"]'; observerFactory(function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i]; // 1. 判断是否改变节点 if (mutation.type !== 'childList') { continue; } // 2. 修改href let $jump = $(mutation.target).find(jumpSelector); $jump.each(function () { let $this = $(this), url = $this.attr('href').match(/jump\.php\?(url=)?(.*)$/)[2]; $this.attr('href', decodeURIComponent(url)); }); } }); })(); // 9. 单页排序 (function () { if (!isSearchPage() || true) { return; } // 9.1. 生成按收藏数排序的按钮 observerFactory(function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i]; // 1. 判断是否改变节点 let $section = $('section'); if (mutation.type !== 'childList' || $section.length <= 0) { continue; } let $div = $section.prev().find('div').eq(0); // 2. 添加按收藏数排序的按钮 let $sort = $(`${i18n('sort_by_popularity')}`); $sort.on('click', function () { var value = !$(this).hasClass('bNPzQX'); console.log(value); GM.setValue(GMkeys.switchOrderByPopular, value); if (value) { $sort.attr('class', 'sc-LzLvL bNPzQX'); } else { $sort.attr('class', 'sc-LzLvL lfAMBc'); } }); $div.prepend($sort); GM.getValue(GMkeys.switchOrderByPopular, true).then(value => { if (value) { $sort.attr('class', 'sc-LzLvL bNPzQX'); } else { $sort.attr('class', 'sc-LzLvL lfAMBc'); } }); observer.disconnect(); break; } }); // 9.2. 按收藏数排序 // TODO 页面没有展示收藏数, 关闭单页排序 observerFactory(function (mutations, observer) { for (let i = 0, len = mutations.length; i < len; i++) { let mutation = mutations[i]; // 1. 判断是否改变节点 let $div = $(mutation.target); if (mutation.type !== 'childList' || $div.find('.count-list').length > 0) { continue; } // 2. 获取所有的item, 排序并填充 GM.getValue(GMkeys.switchOrderByPopular, true).then(value => { if(!value) { return; } let $container = $('section#js-react-search-mid').find('div:first'); let $list = $container.children(); let getCount = $ => parseInt($.find('ul.count-list a').text()) || 0; $list.sort((a, b) => getCount($(b)) - getCount($(a))); $container.html($list); }); return; // 本次变更只排序一次 } }); })(); // 10. 兼容模式检测是否PJAX并刷新页面, https://stackoverflow.com/a/4585031/6335926 (function(history){ let pushState = history.pushState; history.pushState = function(state) { if (typeof history.onpushstate == "function") { history.onpushstate({state: state}); } GM.getValue(GMkeys.MO, true).then(function (enableMO) { if(enableMO) { return; } location.reload(); }); return pushState.apply(history, arguments); }; })(window.history); // 11. 控制面板 (function () { if(!/.+setting_user\.php.*/.test(location.href)) { return; } let $table = $(`Pixiv增强配置 |
保存 说明 |
---|