-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
26 lines (26 loc) · 1.05 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
{
"name": "It's me",
"version": "1.0.6",
"description": "Use your unique font in Gmail.",
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"icons": {
"16": "images/logo_16.png",
"32": "images/logo_32.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
},
"background": {
"scripts": ["js/googleAuth.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": ["build/bundle.js"]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiEhqNCGPfaxnjhzp1gOYxOmn81qFPW+/6QppEuRWEFqTGMHaxeo8M61CVIM5+JJKlop0rvCskBITUdnqBomGMfweoRLrbYZd4AyeAUgo7cFGALEZuy3KuXJdLlbuNB61THDpHBrq82HGyf6LgMk81iWEFrYsAQdLyUbqD6+GptUwelMvw8W9pqC1xSm4DEP5h/5nnSlqjb5jaAvuv/QeIZDqD265oS/glszh8BCP574dEWeIlxvkZpz1bn+HzfnA8jZUxvQKGCxah5mVt6uPLSvFdo2h7gCpTFa3nsz8Grw5zv8Os7BCuN9g2qMS6dOvR93cCMJMVFyuVV9vWHy6AQIDAQAB",
"permissions": ["identity"],
"web_accessible_resources": ["*.png", "js/emailDetector.js"]
}