🏠 Home 

PWA Manifest Remover

Removes the manifest file from any site, which enables the "back" arrow in all Progressive Web Apps.


Installer dette script?
// ==UserScript==
// @name         PWA Manifest Remover
// @namespace    https://github.com/jairjy
// @version      1.6
// @description  Removes the manifest file from any site, which enables the "back" arrow in all Progressive Web Apps.
// @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].prepend(newe);
})();