forked from feracommerce/shopify_app_detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
27 lines (26 loc) · 901 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
{
"manifest_version": 3,
"name": "Shopify App Detector by Fera.ai",
"description": "Detect which apps and what theme a Shopify store is using. Built and maintained by Fera.ai and the community.",
"version": "0.6.3",
"author": "Fera.ai",
"homepage_url": "https://www.github.com/feracommerce/shopify_app_detector",
"icons": { "16": "img/icons/detector.png",
"48": "img/icons/detector.png",
"128": "img/icons/detector.png" },
"action": {
"default_icon": "img/icons/detector-disabled.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "worker_wrapper.js"
},
"content_scripts": [
{
"exclude_matches": ["https://*.google.com/*", "https://*.facebook.com/*"],
"matches": ["http://*/*", "https://*/*"],
"js": ["lib/zepto/zepto.min.js", "js/sad.js", "js/content.js"],
"run_at": "document_end"
}
]
}