1
0
Fork 0
mirror of https://github.com/Findus23/typo3-keyboard.git synced 2024-08-27 19:52:16 +02:00
typo3-keyboard/manifest.json

37 lines
754 B
JSON
Raw Normal View History

2018-09-03 17:29:04 +02:00
{
"manifest_version": 2,
2018-09-04 14:04:59 +02:00
"name": "TYPO3 Keyboard Control",
"short_name": "TYPO3 Keyboard Control",
2018-09-11 13:12:43 +02:00
"version": "1.0.2",
2018-09-11 11:21:46 +02:00
"description": "Produktives Arbeiten in TYPO3 mithilfe von Keyboard Shortcuts",
2018-09-03 17:29:04 +02:00
"permissions": [
"storage"
],
2018-09-11 11:57:38 +02:00
"icons": {
"128": "icon/icon-128x128.png",
"256": "icon/icon-256x256.png",
"512": "icon/icon-512x512.png"
},
2018-09-03 17:29:04 +02:00
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"*://*/typo3/*"
],
"all_frames": true,
"js": [
"libs/mousetrap.js",
"contentscript.js"
]
}
2018-09-11 11:21:46 +02:00
],
"applications": {
"gecko": {
"id": "{9a7acde7-4af3-47d9-8061-c60811b351f2}",
"strict_min_version": "42.0"
}
}
2018-09-03 17:29:04 +02:00
}