Removes the manifest file from any site, for a better PWA
目前為
// ==UserScript==
// @name Manifest remover
// @namespace http://twitter.com/jairjy
// @version 1.2
// @description Removes the manifest file from any site, for a better PWA
// @author JairJy
// @match *://*/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
var newe = document.createElement("link");
newe.rel = "manifest";
newe.href = " ";
newe.setAttribute("crossorigin", "use-credentials");
document.getElementsByTagName("head")[0].appendChild(newe);
})();