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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}