-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
37 lines (37 loc) · 911 Bytes
/
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
{
"content_scripts": [{
"all_frames": true,
"js": [
"js/jquery-1.11.1.min.js",
"js/jquery.waituntilexists.min.js",
"js/memoize.js",
"js/functions.js",
"js/content.js"
],
"matches": [ "*://trello.com/*" ],
"run_at": "document_start"
}],
"permissions": [
"tabs",
"\u003Call_urls>",
"https://www.google-analytics.com/"
],
"web_accessible_resources": [
"mapping/*",
"flags.json"
],
"manifest_version": 2,
"name": "Languages for Trello.com",
"short_name": "Languages for Trello.com",
"description": "Provides translations of Trello.com site interface.",
"update_url": "http://clients2.google.com/service/update2/crx",
"author": "Vlad Savitsky",
"version": "0.9",
"default_locale": "en",
"icons": {
"128": "icons/icon.png",
"16": "icons/icon.png",
"32": "icons/icon.png",
"48": "icons/icon.png"
}
}