tampermonkey にすべてのサイトを含める必要があります。これは、実行する必要があるスクリプトです。
// ==UserScript==
// @name Phishing Blockz
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description Phishing block based on hyperlinks
// @match http://*/*
// @run-at document-end
var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
var headers = req.status;
var locheader=req.getResponseHeader("Location");
alert(headers);
alert(locheader);
私は何か間違ったことをしましたか.クロムのすべてのページでこのユーザースクリプトを実行するのを手伝ってください