Convert Case

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

Convert Case là gì?

Convert Case là một tiện ích mở rộng Chrome được phát triển bởi https://convertcase.net, và tính năng chính của nó là "Convert text in your browser between UPPER CASE, lower case and more".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Convert Case

Tải xuống các tệp mở rộng Convert Case 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
URL Chính Thức https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Mô tả Convert text in your browser between UPPER CASE, lower case and more
Kích Thước Tệp 12.78 KB
Số Lần Cài Đặt 7,168
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2023-09-15
Ngày Phát Hành 2022-09-28
Đánh Giá 3.77/5 Tổng số 22 Đánh Giá
Nhà Phát Triển https://convertcase.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://convertcase.net
URL Trang Trợ Giúp https://convertcase.net
URL Trang Chính Sách Bảo Mật https://convertcase.net/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}