i.pximg.net 403 Forbidden Fix

Fix Pixiv raw image 403

Tính đến 11-07-2018. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         i.pximg.net 403 Forbidden Fix
// @namespace    https://blog.maple3142.net/
// @version      0.2
// @description  Fix Pixiv raw image 403
// @author       maple3142
// @match        https://i.pximg.net/*
// @grant        GM_xmlhttpRequest
// @grant        GM_setValue
// @grant        GM_getValue
// @compatible   firefox >=52
// @compatible   chrome >=55
// ==/UserScript==

;(function() {
	'use strict'
	const params = new URLSearchParams(location.search)
	const removeAllChild = el => {
		while (el.firstChild) el.removeChild(el.firstChild)
	}
	function download(url, name = true) {
		const a = document.createElement('a')
		a.href = url
		a.download = name
		document.body.appendChild(a)
		a.click()
		a.remove()
	}
	if (document.title === '403 Forbidden') {
		const fname = location.pathname.split('/').slice(-1)[0]

		removeAllChild(document.body)
		document.title = 'Loading image...'
		document.body.style.textAlign = 'center'
		const msg = document.createElement('h1')
		msg.textContent = 'Loading'
		msg.style.padding = '0px'
		msg.style.margin = '0px'
		document.body.appendChild(msg)
		const origlink = document.createElement('a')
		origlink.textContent = 'Original Link'
		origlink.href = `https://www.pixiv.net/member_illust.php?mode=medium&illust_id=${/(\d+)/.exec(fname)[1]}`
		origlink.target = '_blank'
		origlink.style.display = 'block'
		origlink.style.padding = '0px'
		origlink.style.margin = '0px'
		document.body.appendChild(origlink)
		GM_xmlhttpRequest({
			method: 'GET',
			url: location.href,
			headers: {
				Referer: `https://www.pixiv.net/`
			},
			responseType: 'blob',
			onload: xhr => {
				const blob = xhr.response
				const url = URL.createObjectURL(blob)
				const img = new Image()
				img.src = url
				msg.replaceWith(img)
				img.oncontextmenu = e => {
					e.preventDefault()
					if (confirm('Download Image?')) {
						download(url, fname)
					}
				}
				document.title = fname
			},
			onerror: e => {
				msg.textContent = 'Load failed.'
			}
		})
	}
})()