SwitchCase
Switch selected text to all uppercase or all lowercase.
SwitchCaseとは何ですか?
SwitchCaseはAsh A.によって開発されたChromeの拡張機能で、その主な機能は「Switch selected text to all uppercase or all lowercase.」です。
拡張機能のスクリーンショット
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 |
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" ] } } |