Facebook Alt+Q 回首頁

Facebook Alt+Q 回首頁,適用於任何Facebook子網域,直接回到Facebook首頁。

目前为 2020-12-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         Facebook Alt+Q 回首頁
// @version      1.2.0
// @description Facebook Alt+Q 回首頁,適用於任何Facebook子網域,直接回到Facebook首頁。
// @namespace     haer0248
// @homepage      https://haer0248.me
// @author       Michael Lin
// @match        https://*.facebook.com/*
// @run-at        document-start
// @grant        none
// ==/UserScript==

/**************************************************************

     需要增加網址或變更請增加/更改上方的 @include       <網址>

***************************************************************/
(function() {
    'use strict';
    document.onkeydown=function(event){
        var e = event || window.event;
        if (e.keyCode == 81 && e.altKey) {
            location.href ='https://www.facebook.com/';
        }
    }
})();