-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 984 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
42
43
44
45
46
47
48
49
50
{
"manifest_version": 3,
"name": "KK Player",
"version": "4.11.6",
"description": "KK Player Browser Extension",
"browser_specific_settings": {
"gecko": {
"id": "niepengsmile@gmail.com"
}
},
"icons": {
"16": "img/20x20.png",
"48": "img/40x40.png",
"128": "img/120x120.png"
},
"host_permissions": [
"*://*/*"
],
"permissions": [
"storage"
],
"background": {
"scripts": ["./js/background.js"]
},
"action": {
"default_icon": "img/20x20.png",
"default_title": "KK Player",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"./css/price.css",
"./css/video.css"
],
"js": [
"./js/jquery.js",
"./js/utils.js",
"./js/video.js",
"./js/price.js",
"./js/filter.js"
],
"run_at": "document_end"
}
],
"homepage_url": "https://laonongmin.online/"
}