-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 901 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
{
"manifest_version": 3,
"name": "AutoLeet",
"version": "0.1.0",
"description": "A chrome extension that takes your code and shares on preferred social media",
"permissions": [
"activeTab",
"contextMenus",
"tabs",
"scripting",
"downloads"
],
"action": {
"default_popup": "build/popup/index.html",
"default_icon": "src/public/icons/icon128.png"
},
"icons": {
"128": "src/public/icons/icon128.png",
"48": "src/public/icons/icon48.png",
"32": "src/public/icons/icon32.png",
"16": "src/public/icons/icon16.png"
},
"host_permissions": ["*://*/", "file://*"],
"options_page": "build/options/index.html",
"background": {
"service_worker": "build/background/background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["build/content/style.css"],
"js": ["build/content/content.js"]
}
]
}