-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 1.62 KB
/
Copy pathmanifest.json
File metadata and controls
36 lines (36 loc) · 1.62 KB
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
{
"action": {
"default_popup": "popup.html",
"default_title": "Autolingo"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "content_scripts/init.js" ],
"matches": [ "*://*.duolingo.com/*" ]
} ],
"content_security_policy": {
"extension_pages": "script-src 'self';"
},
"description": "Automatically completes Duolingo lessons so you don't have to!",
"icons": {
"128": "images/icon-128.png",
"16": "images/icon-16.png",
"256": "images/icon-256.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"60": "images/icon-60.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAskxEfRh6i45SVWvnroMJ1CxrBj8rTi7tvh8OhDe8EJFZra9JLVFr6FVQmwQfFU1wmTEtpwnXAyca7pTUBy7MrST4KE7KqzI1j4YExjMGktMoYmTLvCnRjHlV3jyCImxrR3QmfA3h3StFiUM3SpHMZdQToAI9A9M6hYoHSb7XAJ4DKdt01IpeUj2gfttmMaq5OPRoYchd7IInBCLXFEojXfS8a8rQdRPKCpC/715yCdfELvHY8L0tW6FiSWblcFNNafAb38XVxQMjsHPLgqvXP0BodI7L8VJIjhisEZ9c95b82EfPpJiHLgEUi5Q1X3PnyBHts8wzGCPmDbYdBoxegQIDAQAB",
"manifest_version": 3,
"name": "Autolingo",
"permissions": [ "tabs", "storage" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "2026.04.01.3",
"web_accessible_resources": [ {
"matches": [ "*://*.duolingo.com/*" ],
"resources": [ "content_scripts/injected.js", "content_scripts/DuolingoChallenge.js", "content_scripts/DuolingoSkill.js", "content_scripts/ReactUtils.js", "content_scripts/main.css", "images/diamond-league.png", "images/legendary.svg" ]
} ]
}