Uppercase & Lowercase Converter
Convert all text to uppercase as well as to lowercase & also capitalizes all sentence on a webpage
Uppercase & Lowercase Converterคืออะไร?
Uppercase & Lowercase Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Digital Suvidha Pvt Ltd และคุณลักษณะหลักของมันคือ "Convert all text to uppercase as well as to lowercase & also capitalizes all sentence on a webpage"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Uppercase & Lowercase Converter
ดาวน์โหลดไฟล์ส่วนขยาย Uppercase & Lowercase Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension perform 3 task: 1) Uppercase Converter: The Uppercase Converter is a handy option that allows users to easily convert text to uppercase within their Chrome browser. With just a few clicks, this extension can transform all text on a web page, input field, or text editor into uppercase letters. It saves users the time and effort of manually retyping or copy-pasting text into a separate tool for conversion. Whether you're working on a document, composing an email, or simply browsing the web, the Uppercase Converter extension provides a convenient solution for quickly changing text to uppercase. 2) Lowercase Converter: The Lowercase Converter option is a useful utility that enables users to convert text to lowercase directly within their Chrome browser. This extension eliminates the need for manual rewriting or copying and pasting text into an external application for lowercase conversion. By clicking on Lowercase Converter Button it will instantly transform uppercase or mixed-case text to lowercase, saving time and effort. Whether you're editing a document, composing a message, or engaging with online content, this extension simplifies the process of converting text to lowercase. 3) Capitalize Sentences: The Capitalize Sentences option is a practical tool designed to automatically capitalize sentences within the Chrome browser. This extension helps users ensure proper capitalization of sentences in their writing without the need for manual corrections. By installing the extension, users can seamlessly capitalize the first letter of each sentence, whether it's an article, blog post, email, or any other web content. This eliminates the hassle of going through each sentence individually and manually adjusting the capitalization. The Capitalize Sentences option enhances writing efficiency and accuracy, making it a valuable tool for content creators, students, professionals, and anyone who frequently works with text online.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Uppercase & Lowercase Converter |
ID | baoecndgoggbleknpnfhhjoghmgadkec |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/uppercase-lowercase-conve/baoecndgoggbleknpnfhhjoghmgadkec |
คำอธิบาย | Convert all text to uppercase as well as to lowercase & also capitalizes all sentence on a webpage |
ขนาดไฟล์ | 20.08 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-07-12 |
วันที่เผยแพร่ | 2023-07-12 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Digital Suvidha Pvt Ltd |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://digitalsuvidha.com/ |
URL หน้าช่วยเหลือ | https://digitalsuvidha.com/contact-us/ |
URL หน้านโยบายความเป็นส่วนตัว | https://digitalsuvidha.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Uppercase & Lowercase Converter", "version": "1.0.0", "description": "Convert all text to uppercase as well as to lowercase & also capitalizes all sentence on a webpage", "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "image\/icon16.png", "32": "image\/icon32.png", "48": "image\/icon48.png", "120": "image\/icon120.png" } }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ] } |