SwitchCase
Switch selected text to all uppercase or all lowercase.
SwitchCaseคืออะไร?
SwitchCase เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ash A. และคุณลักษณะหลักของมันคือ "Switch selected text to all uppercase or all lowercase."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SwitchCase
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } } |