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