-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.15 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "Talmud Sidebar Extension (Powered by Sefaria)",
"version": "1.6.21",
"manifest_version": 3,
"description": "Bring the comprehensive Sefaria library to any webpage that is learning a specific Daf of Gemara.",
"icons": {
"16": "Icon_64.png",
"48": "Icon_64.png",
"128": "Icon_128.png"
},
"action": {},
"content_scripts": [
{
"matches": [
"*://daf-yomi.com/*",
"*://*.daf-yomi.com/*",
"*://dafhachaim.org/*",
"*://*.dafhachaim.org/*",
"*://e-daf.com/*",
"*://*.e-daf.com/*",
"*://alldaf.org/*",
"*://*.alldaf.org/*",
"*://outorah.org/*",
"*://*.outorah.org/*",
"*://yutorah.org/*",
"*://*.yutorah.org/*",
"*://*.realcleardaf.com/*",
"*://realcleardaf.com/*",
"*://*.hadran.org.il/*",
"*://hadran.org.il/*",
"*://*.steinsaltz-center.org/*",
"*://steinsaltz-center.org/*"
],
"js": [
"jquery-3.6.1.min.js",
"recognizers.js",
"contentScript.js"
],
"css": [
"SefariaSidebar.css"
],
"run_at": "document_idle"
}
]
}