-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (36 loc) · 1.61 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
{
"name" : "ReaderAI",
"version" : "0.0.1",
"description" : "Adding some smartness to the text you're reading.",
"manifest_version": 3,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3k3KnFJ3ATMDNDH6wUNWxKXz1hD6iJTRSx7xKNr+YnHECXrj+HIDSbvl4mjeiABq2KTXwBJ86H9FnGlRFFnfp1IxRgwx60NHUIMXI3HjXCBxNsGtGo96lxwJeXmf7hWHTdZJQE0MlEilDDJK4YVPlHOgIX3TC6csPD9WKzamGN9Hnkc74e/QRnZ876QKjYt7Cowm08a3joypj/uieT+qKZPdRFQD/cUXH9YpW5Vu6x1a8HxrnbXUs8yMd3QR5Deq7Y0jD9eVcf/pG3Jldl1emL4sYtkoMLVmvzdfYhP65VjSATJiG7WM0oRyHF8r17jA+pnU9ELyxh7eTNjyrNM47QIDAQAB",
"host_permissions": [
"https://translate.google.com/"
],
"background" : {
"service_worker" : "background.js"
},
"permissions" : ["storage","unlimitedStorage","activeTab","tabs","scripting","contextMenus","webRequest", "identity", "identity.email"],
"oauth2": {
"client_id": "908233109-3pqg55eergo7js5mta9k6n287eqhkjsh.apps.googleusercontent.com",
"scopes": ["profile", "email", "https://www.googleapis.com/auth/drive"]
},
"action" : {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [ "notes.html", "textsearch.svg", "translate.svg", "dark_mode.css", "light_mode.css"],
"matches": [ "<all_urls>" ]
}
],
"icons" : {
"128" : "readerai_logo.png"
},
"content_scripts": [
{
"matches" : ["<all_urls>"],
"js" : ["jq.js","jsrsasign-all-min.js","./scripts/text_selection.js", "./scripts/un_highlight.js", "scripts/content.js", "./scripts/plot_compute.js"]
}
]
}