-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
32 lines (32 loc) · 1.11 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
{
"manifest_version": 2,
"name": "CARTO Translator",
"version": "0.1.0",
"description": "Used to view CARTO editor in different languages. Please visit www.carto.com to learn more about mapping in the cloud. For more information on this project you can visit https://github.com/CrestoneDigital/CartoDB-Translation.",
"options_page": "options.html",
"permissions": [
"storage"
],
"content_scripts": [{
"matches": [
"https://*.carto.com/dashboard/*",
"https://*.carto.com/viz/*",
"https://*.carto.com/tables/*",
"https://*.carto.com/maps/*",
"https://*.carto.com/builder/*",
"https://*.carto.com/login/*",
"https://*.carto.com/sessions/*",
"https://*.carto.com/u/*",
"https://*.carto.com/me/*"
],
"js": ["jquery-2.2.4.min.js", "jquery.i18n.min.js", "i18n-cdb-translate.js", "code.js"],
"run_at": "document_end"
}],
"web_accessible_resources": [
"*.i18n.js"
],
"icons": {
"16": "logo.png",
"48": "logo.png"
}
}