Initial commit

This commit is contained in:
Lexi / Zoe 2018-10-09 18:18:42 +02:00
commit ac71dcc580
2 changed files with 21 additions and 0 deletions

4
main.js Normal file
View File

@ -0,0 +1,4 @@
// Example code, taken from
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Your_first_WebExtension
document.body.style.border = "5px solid red";

17
manifest.json Normal file
View File

@ -0,0 +1,17 @@
{
"manifest_version": 2,
"name": "Fairlanguage Firefox Prototype",
"version": "0.1",
"description": "Fairlanguage ist dein Autokorrektur Tool, das dir hilft, eine faire, gendergerechte Sprache zu verwenden.",
"icons": {
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": ["main.js"]
}
]
}