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",
"manifest_version": 3,
"name": "LoadFast: Lightning-Fast Text Expansion",
"description": "The best text expander for Chrome. Expand text with lightning speed. Insert snippets and templates with ease.",
"version": "2.2.10",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"storage",
"clipboardWrite",
"clipboardRead",
"activeTab",
"alarms"
],
"host_permissions": [
"<all_urls>",
"https:\/\/loadfast.store\/*",
"https:\/\/*.loadfast.store\/*",
"https:\/\/*.vercel.app\/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+L",
"mac": "Command+Shift+L",
"windows": "Ctrl+Shift+L"
},
"description": "Open the extension popup"
}
},
"externally_connectable": {
"matches": [
"http:\/\/localhost:3000\/*",
"https:\/\/loadfast.store\/*",
"https:\/\/*.loadfast.store\/*",
"https:\/\/*.vercel.app\/*"
]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "LoadFast Text Expander",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_idle",
"js": [
"content-scripts\/content.js"
]
}
]
}