-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·52 lines (52 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
49
50
51
52
{
"name": "Blink Style Importer",
"version": "0.2.3",
"manifest_version": 2,
"description": "Adding custom css styles on any page, with cloud synchronization for save short styles across devices",
"homepage_url": "https://github.com/uamithril/blink-style-importer",
"author": "uaMithril",
"icons": {
"16": "img/icons/icon16.png",
"48": "img/icons/icon48.png",
"128": "img/icons/icon128.png"
},
"browser_action": {
"default_icon": "img/icons/icon128.png",
"default_title": "Add custom styles on page",
"default_popup": "index.html"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"<all_urls>",
"unlimitedStorage",
"identity"
],
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
"oauth2": {
"client_id": "832079971060-f6h161s4hnt9c71o2i8v522if1l5ht99.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"key":
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgkxkMLnHqW0gK5IGl8H/pndPYj2ydglCzaKg3FyokpTu+xNCoFybHDWFUsFqZ/Qkdmmr/wXI1Zq9P61ZTYIAmBjxZplEYLCF2ZxktZW94LhF9mHC9WfO+i2USt/5HIwhO9kxevipm5bP4ya8zVwQUaRUMYOiIPy3yqld5pQc4r985Cf0fxYofgfphEw4sICByhuirqVNmQ3sqWzzmNQHvhAp+WnGefo4CZcGtKwUsSRyYCn5quFEGeDyz4U3Caak7L66f+gc7Oc/rlF3cJuj3NeV28HQWjlOi5MxcFmdbDSkVuZzSvOmTAR9+a4egFDkTulCAlkRG+da4612LDyrxQIDAQAB",
"omnibox": {
"keyword": "extension"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/vendor/contentscript.js"
]
}
]
}