Convert Case

Convert text in your browser between UPPER CASE, lower case and more

Convert Caseคืออะไร?

Convert Case เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://convertcase.net และคุณลักษณะหลักของมันคือ "Convert text in your browser between UPPER CASE, lower case and more"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Convert Case

ดาวน์โหลดไฟล์ส่วนขยาย Convert Case ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Select text in your browser and right click to convert the text in place from UPPER CASE to Sentence case and more.

Optionally auto copy the selected text by choosing the Copy After Conversion option in the context menu.

What's new!

1.0.9 - Settings page for title case options and keyboard shortcuts - Alt+(U, L, C or A)
1.0.8 - Reliability updates
1.0.7 - Title Case conversion and Slugify option.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
คำอธิบาย Convert text in your browser between UPPER CASE, lower case and more
ขนาดไฟล์ 12.78 KB
จำนวนการติดตั้ง 7,168
เวอร์ชันปัจจุบัน 1.0.9
อัปเดตครั้งล่าสุด 2023-09-15
วันที่เผยแพร่ 2022-09-28
คะแนน 3.77/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา https://convertcase.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://convertcase.net
URL หน้าช่วยเหลือ https://convertcase.net
URL หน้านโยบายความเป็นส่วนตัว https://convertcase.net/privacy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Convert Case",
    "description": "Convert text in your browser between UPPER CASE, lower case and more",
    "version": "1.0.9",
    "manifest_version": 3,
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "128": "logo\/icon.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Convert Case",
        "default_popup": "popup.html",
        "default_icon": "logo\/icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "lowercase": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "lower case"
        },
        "uppercase": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "UPPER CASE"
        },
        "capitalizedcase": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Capitalized Case"
        },
        "titlecase": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Title Case"
        }
    }
}