Initial commit
This commit is contained in:
commit
ac71dcc580
2 changed files with 21 additions and 0 deletions
4
main.js
Normal file
4
main.js
Normal 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
17
manifest.json
Normal 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"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue