SwitchCase
Switch selected text to all uppercase or all lowercase.
SwitchCase là gì?
SwitchCase là một tiện ích mở rộng Chrome được phát triển bởi Ash A., và tính năng chính của nó là "Switch selected text to all uppercase or all lowercase.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SwitchCase
Tải xuống các tệp mở rộng SwitchCase dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SwitchCase |
ID | cilpijegbpjdefcbhgjiobbegencnncb |
URL Chính Thức | https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb |
Mô tả | Switch selected text to all uppercase or all lowercase. |
Kích Thước Tệp | 10.23 KB |
Số Lần Cài Đặt | 109 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2015-02-01 |
Ngày Phát Hành | 2015-02-01 |
Đánh Giá | 1.55/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Ash A. |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |