Created
March 21, 2025 11:03
-
-
Save boredcoder411/2b1d316191a9514db8699b68a394665b to your computer and use it in GitHub Desktop.
script pour parser des adresses mail
This file contains 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 paste name | |
// @namespace http://boredcoder.dev | |
// @version 1.2 | |
// @match *://*/* | |
// @grant GM_setClipboard | |
// ==/UserScript== | |
(function(){'use strict'; | |
var r=/\b([a-zA-Z])([a-zA-Z]+)@[\w.-]+\b/g, | |
t=document.body.innerText, | |
m, | |
f=false; | |
while(m=r.exec(t)){ | |
var s=m[2]; | |
s=s.charAt(0).toUpperCase()+s.slice(1); | |
if(typeof GM_setClipboard!=='undefined'){ | |
GM_setClipboard(s); | |
} else { | |
var i=document.createElement('input'); | |
i.style.position='fixed'; | |
i.style.top='0'; | |
i.style.left='0'; | |
i.style.opacity='0'; | |
i.value=s; | |
document.body.appendChild(i); | |
i.select(); | |
document.execCommand('copy'); | |
document.body.removeChild(i); | |
} | |
f=true; | |
break; | |
} | |
if(!f){ | |
var d="[Nom de la professeure]"; | |
if(typeof GM_setClipboard!=='undefined'){ | |
GM_setClipboard(d); | |
} else { | |
var j=document.createElement('input'); | |
j.style.position='fixed'; | |
j.style.top='0'; | |
j.style.left='0'; | |
j.style.opacity='0'; | |
j.value=d; | |
document.body.appendChild(j); | |
j.select(); | |
document.execCommand('copy'); | |
document.body.removeChild(j); | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment