-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
executable file
·48 lines (42 loc) · 1.28 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
{
"manifest_version": 3,
"name": "FakeNewsFitness Plugin",
"description": "This extension will analyze a page for truth value",
"version": "3.3.5",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx0IC6RtP2vrNIe2DjqIlCUkPh06wcc4JYEVMYE6KLd+u6j6E3pFShdn2GZtROrOMK5xoWtjzTAb3abU1naSnGKD0fWhcOBwYNbRdatNAhJPvkOyRoFt5QyHDQVhjQpPEgwPgKYJ0cBPV1RCWKpx/YVds+sSd/GyQ3ft5BYwXf++D4RK7NPJlkZgjoT6MKbTLVjpLpmoFhTPzGILTPacOt99e6yJu4wp/Pn9cFoQ3qdcmvQAXaBV2okpmlGblF4CbX6B6z1d9AcCkdOijR0/r9atzNUFAKVnKSHBGQZ9CHnWj5SmXBQTSx1bb8+IJCFin3DHlqmOLnv3O80zSK2Br3QIDAQAB",
"oauth2": {
"client_id": "177922651464-t5kp828e4u8g8bobn1q6v8dc4vfolh5t.apps.googleusercontent.com",
"scopes":["https://www.googleapis.com/auth/drive"]
},
"action": {
"default_icon": "img/icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css" : ["page.css"]
}
],
"web_accessible_resources": [{
"resources": [
"img/help.png",
"img/tab.png",
"panel.html"
],
"matches": [
"*://*/*"
]
}],
"permissions": [
"activeTab",
"identity",
"storage"
],
"host_permissions": [
"*://*/*"
]
}