Projekt Upload

This commit is contained in:
clerie
2018-06-23 20:39:41 +02:00
parent 9fd78282e9
commit 33de580f43
8 changed files with 111 additions and 2 deletions

30
manifest.json Normal file
View File

@@ -0,0 +1,30 @@
{
"manifest_version": 2,
"name": "Witzig!",
"version": "0.1",
"description": "Replaces the thumb up and down in YouTube with an Witzig! and Nicht Witzig! stamp.",
"icons": {
"48": "icons/witzig-48.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/watch*"
],
"js": [
"witzig.js"
]
}
],
"web_accessible_resources": [
"media/stempel-witzig.png",
"media/sticker-witzig.png",
"media/sticker-nicht-witzig.png"
]
}