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文件

下載SwitchCase擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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