Initial commit

This commit is contained in:
7u83 2020-11-15 14:35:41 +01:00
parent 05f3a59b4f
commit 6a55813ce5
3 changed files with 35 additions and 0 deletions

20
manifest.json Normal file
View File

@ -0,0 +1,20 @@
{
"manifest_version": 2,
"name": "Regender",
"version": "0.9",
"description": "Entfernt Innen, *innen und _innen, um die Lesbarkeit zu verbessern.",
"icons": {
"48": "icons/border-48.png"
},
"content_scripts": [
{
"matches": ["*://*.mozilla.org/*"],
"js": ["regender.js"]
}
]
}

3
regender.js Normal file
View File

@ -0,0 +1,3 @@
document.body.style.border = "33px dashed blue";
alert ("hello");

12
test.html Normal file
View File

@ -0,0 +1,12 @@
<html>
<body>
<p>
Polizist:innen und Demonstrant:innen stürmten aufeinander los.
Einige Reichsbürger:innen sahen zu, doch irgendwann wurde es
den besorgten Reichsbürger:innen zu bunt und den
Polizist:innen auch.
</p>
</body>
</html>