-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
21 lines (21 loc) · 781 Bytes
/
manifest.json
File metadata and controls
21 lines (21 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "Drivers License Scanner for ShowClix",
"version": "2021.1.2",
"description": "Plugin for users of the ShowClix Box Office interface to fill in address fields with data from a scanned drivers license.",
"permissions": [ "activeTab", "declarativeContent", "storage" ],
"icons": {
"16": "images/licenseparser_icon-16.png",
"32": "images/licenseparser_icon-32.png",
"48": "images/licenseparser_icon-48.png",
"128": "images/licenseparser_icon-128.png"
},
"manifest_version": 3,
"content_scripts": [
{
"matches": [ "http://localhost/*", "http://*.sightunseen.farm/*", "https://*.showclix.com/*" ],
"css": [ "licenseparser.css" ],
"js": [ "licenseparser.js", "content-inject.js" ],
"run_at": "document_idle"
}
]
}