Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LiquidEMR Auto Text Expander",
"manifest_version": 3,
"version": "1.8.0",
"description": "Create custom keyboard shortcuts to expand and replace text as you type!",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"default_locale": "en",
"offline_enabled": true,
"omnibox": {
"keyword": "aaron"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/third_party\/jquery-2.1.1-simplified.min.js",
"js\/third_party\/moment-with-locales.min.js",
"js\/constants.js",
"js\/expander.js"
],
"run_at": "document_start"
}
],
"commands": {
"fetch-data-feature": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Fetch Current Data"
}
},
"action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"scripting",
"tabs",
"storage",
"unlimitedStorage",
"notifications",
"clipboardRead",
"activeTab",
"commands"
]
}