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
Eメール [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"
        }
    }
}