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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://convertcase.net
عنوان صفحة سياسة الخصوصية 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"
        }
    }
}