/** * Myext programmatic check of where the script is being run * * Copyright (C) 2021 Wojtek Kosior * * Dual-licensed under: * - 0BSD license * - GPLv3 or (at your option) any later version */ /* This needs to be changed if we ever modify the html file path. */ export default function is_background() { return window.location.protocol === "moz-extension:" && window.location.pathname === "/background/background.html"; }