SwitchCase

Switch selected text to all uppercase or all lowercase.

SwitchCase란 무엇입니까?

SwitchCase은(는) Ash A.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch selected text to all uppercase or all lowercase."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SwitchCase 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever realize there's no simple way to capitalize and uncapitalize a selected block of text in the browser?
Or did you leave caps-lock on and want to reverse your all caps text?

Now you can just select your text input, right-click, and choose whether to make text all uppercase or all lowercase.
And best of all, it doesn't open a popup or another tab with your text, it replaces it RIGHT THERE!


Note: Currently does not work on dynamically-loaded text or protected inputs, like Google search and Facebook.                    

확장 프로그램 기본 정보

이름 SwitchCase SwitchCase
ID cilpijegbpjdefcbhgjiobbegencnncb
공식 URL https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb
설명 Switch selected text to all uppercase or all lowercase.
파일 크기 10.23 KB
설치 횟수 109
현재 버전 1.1
최근 업데이트 2015-02-01
출시 날짜 2015-02-01
평점 1.55/5 총 11 개의 평점
개발자 Ash A.
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SwitchCase",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Switch selected text to all uppercase or all lowercase.",
    "icons": {
        "16": "src\/img\/16.png",
        "48": "src\/img\/48.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    }
}