-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
41 lines (41 loc) · 864 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
35
36
37
38
39
40
41
{
"manifest_version": 2,
"name": "Deeplex",
"version": "0.2.1",
"description": "Website Translator",
"author": "Kenny Cruz",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_title": "Deeplex",
"default_icon": "img/icon.png",
"default_popup": "src/popup.html"
},
"background": {
"scripts": [
"src/background/background.js",
"src/background/prepare-text.js"
]
},
"content_scripts": [
{
"matches": ["https://www.deepl.com/translate"],
"js": ["src/content-scripts/deepl-bot.js"]
},
{
"matches": ["<all_urls>"],
"js": [
"src/content-scripts/apply-translation.js",
"src/content-scripts/parser.js"
]
}
],
"permissions": [
"tabs",
"activeTab",
"storage"
]
}