Created
July 28, 2024 22:47
-
-
Save keyboard-slayer/7c01b25adaf5e9c7a5327fb6a06059b5 to your computer and use it in GitHub Desktop.
A silly script that notify you when a website uses Odoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Odoo notifier | |
// @namespace Violentmonkey Scripts | |
// @match *://*/* | |
// @grant GM_notification | |
// @version 1.0 | |
// @author __keyb__ | |
// @description 7/29/2024, 12:24:47 AM | |
// ==/UserScript== | |
window.addEventListener('load', function() { | |
if (odoo !== undefined) { | |
document.getElementsByTagName('main')[0].innerHTML = `<center><h1><mark>THIS WEBSITE RUNS ODOO</mark></h1></center>${document.getElementsByTagName('main')[0].innerHTML}`; | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment