-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 933 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
{
"name": "Label Finder",
"version": "0.8.1",
"description": "Find value of a custom label",
"manifest_version": 2,
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"web_accessible_resources": [
"js/contentscript.js",
"js/popup.js"
],
"icons" : {
"16": "img/icons/16.png",
"48": "img/icons/48.png",
"128": "img/icons/128.png"
},
"permissions": [ "tabs", "https://*.force.com/*", "https://*.salesforce.com/*"],
"update_url": "https://clients2.google.com/service/update2/crx",
"author": "Ravi Munde",
"browser_action": {
"default_icon": "img/L.png"
},
"content_scripts": [ {
"js": [ "js/jsforce.js",
"js/contentscript.js",
"js/jquery.js",
"js/popup.js"
],
"matches": [ "https://*.salesforce.com/*", "https://*.force.com/*" ]
}]
}