-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (49 loc) · 1.15 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
{
"manifest_version": 2,
"name": "Flppn Plugin",
"description": "This extension will add a link in Flppn",
"version": "0.0.3",
"browser_action": {
"default_title": "Flppn",
"default_icon": "icons/icon_19.png"
},
"web_accessible_resources": [
"smartSaveButton/smartSaveButton.html",
"smartSaveMenu/smartSaveMenu.html",
"smartLogin/smartLogin.html"
],
"permissions": [
"http://*/*",
"https://*/*",
"activeTab",
"background",
"tabs",
"storage"
],
"icons": {
"19": "icons/icon_19.png",
"128": "icons/icon_128.png"
},
"background": {
"scripts": ["./background/background.min.js"],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://*.pornhub.com/*",
"*://*.youporn.com/*",
"*://*.chrome.com/*"
],
"js": [
"content-scripts/request.min.js",
"smartSaveButton/scripts/smartSaveButton.min.js",
"smartSaveMenu/scripts/smartSaveMenu.min.js",
"smartLogin/scripts/smartLogin.min.js",
"content-scripts/panicButton.min.js"
],
"run_at": "document_end"
}
],
"incognito": "spanning"
}