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": "Text Case Changer",
"version": "1.1.0",
"description": "Change Case of selected editable text.",
"homepage_url": "https:\/\/github.com\/JNavas2\/Text-Case-Changer",
"icons": {
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"64": "images\/icon-64.png",
"128": "images\/icon-128.png"
},
"background": {
"service_worker": "service_worker.js"
},
"permissions": [
"contextMenus",
"storage",
"scripting"
],
"optional_host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"lowerCase": {
"description": "Change selection to lower case"
},
"upperCase": {
"description": "Change selection to upper case"
},
"invertCase": {
"description": "Invert the case of each letter in the selection"
},
"sentenceCase": {
"description": "Change selection to sentence case"
},
"startCase": {
"description": "Capitalize the first letter of each word in the selection"
},
"titleCase": {
"description": "Change selection to title\/headline case"
},
"camelCase": {
"description": "Change selection to camelCase"
},
"snakeCase": {
"description": "Change selection to snake_case"
}
}
}