我想将Facebook新闻Feed页面(例如:https://www.facebook.com/)重定向到此页面:https://www.facebook.com/bookmarks/lists仅在我的浏览器上使用Greasemonkey加载项。 我写到这些直到现在:
// ==UserScript==
// @name News Feed
// @namespace https://example.com/example
// @description Redirecting News Feed
// @include https://web.facebook.com/*
// @include https://www.facebook.com/*
// @version 1
// @grant none
// @noframes
// @run-at document-start
// ==/UserScript==
"use strict";
if(window.location.href.slice(-4) == 'com/') {
window.location = "https://web.facebook.com/bookmarks/lists";
}
document.onclick = function(event) {
if(window.location.href.slice(-4) == 'com/') {
event.preventDefault();
window.location = "https://web.facebook.com/bookmarks/lists";
}
}
在Facebook上的页面触发onclick事件时无法正常工作。有什么建议吗?