-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
34 lines (34 loc) · 861 Bytes
/
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
{
"manifest_version": 3,
"name": "languagereactor to Anki",
"description": "Create Anki cards from sentences on languagereactor",
"version": "2.1",
"author": "@clearlykyle",
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"all_frames": true,
"js": [
"src/inject/content_script.js",
"res/toastify.js"
],
"css": [
"res/toastify.css"
],
"matches": [
"*://*.languagereactor.com/*"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "languagereactor to Anki Settings",
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "src/bg/background.js"
}
}