This repository has been archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmanifest.json
72 lines (72 loc) · 2.44 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
{
"name": "Privly",
"short_name": "Privly",
"version": "0.5.1",
"description": "The Official Privly extension for Google Chrome.",
"author": "The Privly Foundation",
"manifest_version": 2,
"permissions": ["webRequest",
"webRequestBlocking",
"contextMenus",
"tabs",
"notifications",
"<all_urls>"],
"offline_enabled": false,
"background": {
"page": "background.html"
},
"web_accessible_resources": [
"images/logo_16.png",
"images/logo_16_white.png",
"images/logo_48.png",
"privly-applications/PlainPost/show.html",
"privly-applications/PlainPost/seamless.html",
"privly-applications/PlainPost/seamless_ttlselect.html",
"privly-applications/Message/show.html",
"privly-applications/Message/seamless.html",
"privly-applications/Message/seamless_ttlselect.html",
"privly-applications/vendor/jquery-1.10.2.min.map"
],
"icons": { "16": "images/logo_16.png",
"48": "images/logo_48.png",
"96": "images/logo_96.png",
"112": "images/logo_112.png",
"128": "images/logo_128.png" },
"browser_action": {
"default_icon": {
"19": "images/logo_48.png",
"38": "images/logo_48.png"
},
"default_title": "Privly Extension",
"default_popup": "pages/popup.html"
},
"options_page": "privly-applications/Pages/ChromeOptions.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": true,
"js": [
"javascripts/content_scripts/privly.js"
]
}, {
"matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": true,
"run_at": "document_start",
"js": [
"privly-applications/shared/javascripts/context_messenger.js",
"javascripts/content_scripts/posting.resource.js",
"javascripts/content_scripts/posting.util.js",
"javascripts/content_scripts/posting.service.js",
"javascripts/content_scripts/posting.controller.js",
"javascripts/content_scripts/posting.app.js",
"javascripts/content_scripts/posting.button.js",
"javascripts/content_scripts/posting.floating.js",
"javascripts/content_scripts/posting.tooltip.js",
"javascripts/content_scripts/posting.ttlselect.js",
"javascripts/content_scripts/posting.target.js"
]
}
]
}