Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "5.7.1",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"128": "icon\/128.png"
},
"default_locale": "en",
"permissions": [
"storage",
"activeTab",
"offscreen",
"unlimitedStorage"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"commontypos.json",
"mediaNames.json",
"companyNames.json",
"slangWords.json",
"dictionary82.txt",
"dictionary_en_82_765.txt",
"spanish-100.txt",
"es-100l.txt",
"assets\/*",
"icon\/*.png"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "KeyCorrect",
"default_popup": "popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/keycorrect.web.app\/dashboard",
"https:\/\/keycorrect.web.app\/login",
"https:\/\/keycorrect.web.app\/signup",
"https:\/\/keycorrect.web.app\/welcome",
"https:\/\/keycorrect.web.app\/welcome\/*"
],
"all_frames": true,
"run_at": "document_idle",
"js": [
"content-scripts\/auth.js"
]
},
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_idle",
"css": [
"content-scripts\/content.css"
],
"js": [
"content-scripts\/content.js"
]
}
]
}