Convert Case

Convert text in your browser between UPPER CASE, lower case and more

什么是Convert Case?

Convert Case是由https://convertcase.net开发的Chrome扩展程序,该扩展的主要功能是“Convert text in your browser between UPPER CASE, lower case and more”。

扩展截图

screenshot

下载Convert Case扩展crx文件

下载Convert Case扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Select text in your browser and right click to convert the text in place from UPPER CASE to Sentence case and more.

Optionally auto copy the selected text by choosing the Copy After Conversion option in the context menu.

What's new!

1.0.9 - Settings page for title case options and keyboard shortcuts - Alt+(U, L, C or A)
1.0.8 - Reliability updates
1.0.7 - Title Case conversion and Slugify option.                    

扩展基本信息

名称 Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
官方URL https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
简介 Convert text in your browser between UPPER CASE, lower case and more
文件大小 12.78 KB
安装次数 7,168
当前版本 1.0.9
更新时间 2023-09-15
上架时间 2022-09-28
评分 3.77/5 共22次评分
开发者 https://convertcase.net
电子邮箱 [email protected]
付费类型 free
扩展官网 https://convertcase.net
帮助页面URL https://convertcase.net
隐私政策页面URL https://convertcase.net/privacy
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Convert Case",
    "description": "Convert text in your browser between UPPER CASE, lower case and more",
    "version": "1.0.9",
    "manifest_version": 3,
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "128": "logo\/icon.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Convert Case",
        "default_popup": "popup.html",
        "default_icon": "logo\/icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "lowercase": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "lower case"
        },
        "uppercase": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "UPPER CASE"
        },
        "capitalizedcase": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Capitalized Case"
        },
        "titlecase": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Title Case"
        }
    }
}