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
官方網址 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"
        }
    }
}