أداة مساعدة للكادر الإداري في مدارس التعليم لطباعة التقارير والسجلات المدرسية
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "تقارير حاضر | Hadir Reports",
"description": "أداة مساعدة للكادر الإداري في مدارس التعليم لطباعة التقارير والسجلات المدرسية",
"homepage_url": "https://hadirtech.com",
"version": "1.0.4",
"manifest_version": 3,
"action": {
"default_title": "تقارير حاضر"
},
"icons": {
"16": "images/hadir_rpt_16.png",
"48": "images/hadir_rpt_48.png",
"128": "images/hadir_rpt_128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"js": [
"js/jquery-3.5.1.min.js",
"js/jquery-confirm.min.js",
"js/xlsx.full.min.js",
"js/crypto-js.min.js"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"fonts/ar.woff2",
"fonts/en.woff2"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"options_page": "html/hadir_rpt.html"
}