Convert Case

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

Convert Case क्या है?

Convert Case https://convertcase.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert text in your browser between UPPER CASE, lower case and more"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Convert Case एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
        }
    }
}