forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.71 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
{
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsc0yU3MTDhx+JC23YHwvWo/TD1Pynkdc9QekQ7S3jpl0isgro3I5K0ywANwBsZicIYhVq3OQTzV4jq53YoJSP9OFApMb3yzqzJ/QmcwpGvHjztD6I2zPoglMLnWj12VNqFqJtqVj5tT+/TQJ2MdY4eCQpuPweEwDLsR9mP2mxlpV1iCNzF2T61DAqnLmV8zeyjrwJ1QRZq/qd0lJR5JRI8+xBTTStOy2eQvnf8ngEXq2R+NXNq10MELtTpfAT0NPPS1lUbJwR9AYbm9f4wQWLxpeyl63WlmbBUsInM9jsfccDo0hULa59IWpgTdFVQFMBFlIEIN7St8QpF09OygMNQIDAQAB",
"name": "Keybase",
"short_name": "Keybase",
"version": "1.10.16",
"description": "A secure chat button for every profile.",
"icons": {
"48": "images/icon-keybase-logo-48.png",
"128": "images/icon-keybase-logo-128.png"
},
"browser_action": {
"default_icon": "images/icon-keybase-logo-logged-out-64.png",
"default_title": "Keybase Chat",
"default_popup": "html/popup.html"
},
"permissions": ["activeTab", "contextMenus", "declarativeContent", "nativeMessaging", "storage"],
"web_accessible_resources": ["images/*", "fonts/*"],
"content_scripts": [
{
"matches": [
"https://reddit.com/*",
"https://*.reddit.com/*",
"https://twitter.com/*",
"https://www.facebook.com/*",
"https://github.com/*",
"https://news.ycombinator.com/user*",
"https://keybase.io/*"
],
"js": ["js/bundle.js", "js/identities.js", "js/inject.js", "js/content.js"],
"css": ["css/fonts.css", "css/style.css"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["js/identities.js", "js/background.js"]
},
"options_ui": {
"page": "html/options.html",
"chrome_style": true
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "50.0"
}
},
"manifest_version": 2
}