Inspect and view changes in משנת יוסף - הדפסת הזמנה משופרת 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "משנת יוסף - הדפסת הזמנה משופרת",
"version": "3.2",
"description": "תוסף להדפסת הזמנות באתר משנת יוסף עם טבלת מוצרים משופרת",
"permissions": [
"activeTab",
"scripting",
"tabs"
],
"host_permissions": [
"https://v2.mishnatyosef.org/*",
"https://mishnatyosef.org/*",
"https://new.mishnatyosef.org/*"
],
"action": {
"default_icon": {
"16": "icon48.png",
"32": "icon48.png",
"48": "icon48.png",
"128": "icon48.png"
}
},
"content_scripts": [
{
"matches": [
"https://mishnatyosef.org/*",
"https://new.mishnatyosef.org/*",
"https://v2.mishnatyosef.org/*"
],
"js": [
"xlsx.full.min.js",
"content.js"
],
"css": [
"styles.css"
]
}
],
"icons": {
"16": "icon48.png",
"32": "icon48.png",
"48": "icon48.png",
"128": "icon48.png"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"xlsx.full.min.js"
],
"matches": [
"https://*.mishnatyosef.org/*",
"https://new.mishnatyosef.org/*"
]
}
]
}