Initial commit
This commit is contained in:
commit
ac71dcc580
|
|
@ -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";
|
||||
|
|
@ -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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue