mobile01.com simply browse with keyboard

press keyboard [← / a] to the previous page, [→ / d] to the next page, [↓ / s] back to parent classification. Add "My Article" to the top right corner.

Versione datata 20/01/2020. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         mobile01.com simply browse with keyboard
// @name:zh-TW   mobile01.com 簡易鍵盤瀏覽
// @name:zh-CN   mobile01.com 简易键盘浏览
// @description  press keyboard [← / a] to the previous page, [→ / d] to the next page, [↓ / s] back to parent classification. Add "My Article" to the top right corner.
// @description:zh-TW 用方向鍵 [← / a] 切換前一頁,[→ / d] 切換次一頁,[↓ / s] 退回外層分類。右上角加入 [我的文章] 連結。
// @description:zh-CN 用方向键 [← / a] 切换前一页,[→ / d] 切换次一页,[↓ / s] 退回外层分类。右上角加入 [我的文章] 连结。
// @namespace    https://greasyfork.org/zh-TW/users/393133-evan-tseng
// @author       Evan Tseng
// @version      1.01
// @match        www.mobile01.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	document.addEventListener("keydown", async function(e) {
		if(document.querySelector(":focus")) return;
		e = e || window.event;
		try{
			switch(e.which || e.keyCode) {
				case 40: // down
				case 83: // 's'
					if(window.location.href.match(/\/topicdetail\.php\?/i))
						document.querySelector(".c-breadCrumb__item:last-child a").click();
					else
						document.querySelector(".c-breadCrumb__item:nth-last-of-type(-n+2) a").click();
					break;
				case 65: // 'a'
				case 37: // left
					document.querySelector(".l-pagination__page.is-active").previousSibling.firstChild.click();
					break;
				case 68: // 'd'
				case 39: // right
					document.querySelector(".l-pagination__page.is-active").nextSibling.firstChild.click();
					break;
			}
		} catch(e){}
	});

	document.addEventListener("DOMContentLoaded", function() {
		var	elm=null;

		// 登入後,畫面右上角顯示[我的文章]連結
		if(elm=document.querySelector(".l-signedIn")){
			var css='._myArticle{display:inline-block;white-space:nowrap;height:1em;font-size:calc(9pt + .25vw);text-align:center;padding:.3em;line-height:1;margin:calc(.6em - .38vw) 0 0 1mm;color:#f3f3f3;background:#30a04c;border-radius:5pt;box-shadow:inset 0 0 0 1px #394,inset 0 0 0 2px #ebeae7;transition:.3s}'+
				'._myArticle:hover{margin:calc(.6em - .38vw - 1px) 0 1px 1mm;color:#fff;background:#23803d;box-shadow:inset 0 0 0 1px #3a5,inset 0 0 0 2px #fff, 0 1px 4px rgba(0,0,0,.4);transition:.1s}'+
				'._myArticle:active{color:#ddd;background:#23803d;box-shadow:inset 0 0 0 1px #3a5,inset 0 0 0 2px #ddd;transition:.1s}',
				cssStyle=document.createElement('style');
			if(cssStyle.styleSheet) cssStyle.styleSheet.cssText=css;
			else cssStyle.appendChild(document.createTextNode(css));
			document.querySelector('head').appendChild(cssStyle);

			var myArticle=document.createElement('a');
			myArticle.setAttribute("href","/participatetopics.php");
			myArticle.setAttribute("class","_myArticle");
			myArticle.setAttribute("title","我的文章");
			myArticle.innerText="我的文章";
			elm.appendChild(myArticle);
		}

		// 移除指向本頁的連結
		elm=document.querySelectorAll(".l-pagination__page.is-active>a, .c-filter a.c-iconLink--gn");
		for(let i in elm) if(elm[i].tagName=="A") elm[i].removeAttribute("href");
	}, false);

})();