-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
61 lines (61 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"locations": {
"storefront": {
"global_header": "snippets/global-header.html",
"add_to_cart": "snippets/add-to-cart.html",
"view_product": "snippets/view-product.html",
"start_checkout": "snippets/start-checkout.html",
"complete_checkout": "snippets/complete-checkout.html"
}
},
"settings_schema": [
{
"name": "google_analytics_enabled",
"type": "checkbox",
"label": "Enable Google Analytics",
"help_text": "Enable Google Analytics on your storefront.",
"default": false
},
{
"name": "google_analytics_measurement_id",
"type": "text",
"label": "Google Analytics Measurement ID",
"default": "",
"help_text": "",
"required": false,
"max_length": 250
},
{
"name": "google_adwords_conversion_enabled",
"type": "checkbox",
"label": "Enable Google Adwords Conversion Tracking",
"help_text": "",
"default": false
},
{
"name": "google_adwords_conversion_id",
"type": "text",
"label": "Google Adwords Conversion ID",
"default": "",
"required": false,
"help_text": "Required when Google Adwords Conversion Tracking is enabled.",
"max_length": 250
},
{
"name": "google_adwords_conversion_label",
"type": "text",
"label": "Google Adwords Conversion Label",
"default": "",
"required": false,
"help_text": "Required when Google Adwords Conversion Tracking is enabled.",
"max_length": 250
},
{
"name": "google_analytics_debug_mode",
"type": "checkbox",
"label": "Enable Debug Mode",
"help_text": "Debug mode allows you to monitor transactions in real time.",
"default": false
}
]
}