Convert Case

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

Apa itu Convert Case?

Convert Case adalah ekstensi Chrome yang dikembangkan oleh https://convertcase.net, dan fitur utamanya adalah "Convert text in your browser between UPPER CASE, lower case and more".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Convert Case

Unduh file ekstensi Convert Case dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
URL Resmi https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Deskripsi Convert text in your browser between UPPER CASE, lower case and more
Ukuran File 12.78 KB
Jumlah Instalasi 7,168
Versi Saat Ini 1.0.9
Terakhir Diperbarui 2023-09-15
Tanggal Publikasi 2022-09-28
Penilaian 3.77/5 Total 22 Penilaian
Pengembang https://convertcase.net
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://convertcase.net
URL Halaman Bantuan https://convertcase.net
URL Halaman Kebijakan Privasi https://convertcase.net/privacy
Bahasa yang Didukung 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"
        }
    }
}