somtodaynt/manifest.json

43 lines
892 B
JSON

{
"manifest_version": 2,
"name": "SOMtodayn't",
"version": "1.15",
"author": "McArn",
"description": "Changes the slogan on the login page of the school management system SOMtoday.",
"browser_specific_settings": {
"gecko": {
"id": "arne@arnweb.nl"
}
},
"icons": {
"25" : "assets/icons/25.png",
"32" : "assets/icons/32.png",
"48": "assets/icons/48.png"
},
"background": {
"persistent": true,
"scripts": ["background/js/index.js"]
},
"browser_action": {
"default_icon": {
"32" : "assets/icons/32.png",
"25" : "assets/icons/25.png"
},
"default_title": "SOMtodayn't",
"default_popup": "popup/html/index.html"
},
"content_scripts": [
{
"matches": ["*://*.somtoday.nl/*"],
"js": ["content/js/index.js"]
}
]
}