witzig-nicht-witzig/manifest.json

36 lines
637 B
JSON
Raw Normal View History

2018-06-23 20:39:41 +02:00
{
"manifest_version": 2,
2018-06-24 12:44:44 +02:00
"name": "Witzig! - Nicht Witzig!",
2018-06-29 12:16:09 +02:00
"version": "1.2",
2018-06-23 20:39:41 +02:00
2018-06-23 21:26:06 +02:00
"description": "Replaces the thumb up and down in YouTube with a Witzig! and a Nicht Witzig! stamp.",
2018-06-29 10:14:00 +02:00
"homepage_url": "https://github.com/clerie/witzig-nicht-witzig/",
2018-06-23 20:39:41 +02:00
"icons": {
2018-06-24 22:14:25 +02:00
"73": "media/icon-witzig-73.png",
2018-06-24 21:56:34 +02:00
"228": "media/icon-witzig-228.png"
2018-06-23 20:39:41 +02:00
},
"content_scripts": [
{
"matches": [
2018-06-24 14:19:38 +02:00
"*://*.youtube.com/*"
2018-06-23 20:39:41 +02:00
],
"js": [
"witzig.js"
]
}
],
"web_accessible_resources": [
"media/*"
2018-06-29 12:16:09 +02:00
],
"options_ui": {
"page": "settings/index.html"
},
"permissions": ["storage"]
2018-06-23 20:39:41 +02:00
}