-
Notifications
You must be signed in to change notification settings - Fork 22
/
manifest.json
93 lines (93 loc) · 2.36 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"version": "1.3.0",
"name": "91pornHub",
"manifest_version": 3,
"description": "提取91porn和pornhub视频地址,复制地址后配合其他下载工具下载,推荐EagleGet,配合梯子快速下载",
"icons": {
"48": "images/48.png",
"96": "images/96.png",
"128": "images/128.png"
},
"permissions": [
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_icon": "images/96.png",
"default_title": "91pornHub",
"default_popup": ""
},
"content_scripts": [
{
"matches": [
"http://91porn.com/view_video.php?*"
],
"js": [
"js/nineone.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"https://91porn.com/view_video.php?*"
],
"js": [
"js/nineone.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"https://*.pornhub.com/view_video.php?*"
],
"js": [
"js/pornhub.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"https://*.pornhubpremium.com/view_video.php?*"
],
"js": [
"js/pornhub.js"
],
"css": [],
"run_at": "document_start"
},
{
"matches": [
"http://*/vodplay/*"
],
"js": [
"js/hsck.js"
],
"css": [],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["js/pornhubInject.js"],
"matches": ["https://*.pornhub.com/*"]
},
{
"resources": ["js/nineoneInject.js"],
"matches": ["http://91porn.com/*", "https://91porn.com/*"]
},
{
"resources": ["js/jquery-3.0.0.min.js"],
"matches": ["http://*/*", "https://*/*"]
},
{
"resources": ["js/hsckInject.js"],
"matches": ["http://*/*"]
}
],
"homepage_url": "https://github.com/lovevol/91pornHub",
"commands": {}
}