47 lines
1 KiB
JSON
47 lines
1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "BME Logginer",
|
|
"version": "0.1.0",
|
|
|
|
"description": "Automaticly logs you in to BME accounts",
|
|
|
|
|
|
"icons": {
|
|
"32": "icons/icon-32.png"
|
|
},
|
|
"permissions": ["storage"],
|
|
"browser_action": {
|
|
"default_icon": "icons/icon-32.png",
|
|
"default_title": "BME Logginer",
|
|
"default_popup": "popup/credentials.html"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "bme_logginer@toldi.eu",
|
|
"strict_min_version": "57.0a1"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://login.bme.hu/idp/Authn/UserPassword"],
|
|
"js": ["bme.js"]
|
|
},
|
|
{
|
|
"matches": ["*://login.microsoftonline.com/common/oauth2/authorize*"],
|
|
"js": ["ms.js"]
|
|
},
|
|
{
|
|
"matches": ["*://login.microsoftonline.com/login.srf*"],
|
|
"js": ["ms_staysignedin.js"]
|
|
},
|
|
{
|
|
"matches": ["*://edu.vik.bme.hu/","*://online.vik.bme.hu/"],
|
|
"js": ["moodle-vik.js"]
|
|
},
|
|
{
|
|
"matches": ["*://edu.gtk.bme.hu/","*://edu.gpk.bme.hu/","*://edu.epito.bme.hu/","*://edu.epitesz.bme.hu/","*://edu.ttk.bme.hu/"],
|
|
"js": ["moodle.js"]
|
|
}
|
|
]
|
|
|
|
}
|