Inspect and view changes in PRO LAB source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "PRO LAB",
"version": "1.0.0",
"author": "Lukáš Drahník <ldrahnik@gmail.com>",
"manifest_version": 2,
"description": "Rozšíření přidává užitečné funkce do ISIN, které systém propojují s modulem Pacienti COVID-19 a registrem Žádanky testů COVID-19.",
"background": {
"scripts": [
"background/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*.ksrzis.cz/*"
],
"js": [
"content/content.js"
]
}
],
"permissions": [
"<all_urls>",
"tabs",
"cookies",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{63375bc0-1507-406d-bb9e-dfa99039efc4}"
}
}
}