Files
medods_n3health_extension/manifest.json
T
2026-02-15 16:59:54 +03:00

57 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Medods to N3.Health",
"version": "1.0",
"description": "Медодс. Электронное подписание документов",
"permissions": [
"activeTab",
"downloads",
"storage",
"scripting",
"declarativeNetRequest",
"offscreen"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"options_page": "search.html",
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"metaData.js",
"singing.js",
"documents.js",
"userData.js",
"search.html"
],
"matches": ["<all_urls>"]
}
],
"declarative_net_request": {
"rule_resources": [{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}]
}
}