Case Converter

Easily convert the selected text in upper case, lower case, ect.

Case Converter क्या है?

Case Converter Martial Séron द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily convert the selected text in upper case, lower case, ect."।

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

screenshot
screenshot

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

crx प्रारूप में Case Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        When you select text, it adds a right click menu with several options to instantly change the case of the selected text.

Some input fields may contain javascript that blocks the text to be converted.

Contact : [email protected]

# Update 3.0
- All features now free
- Add functions Slugify, URL encode and URL decode

# Update 2.0
- Add keyboard shortcuts support (paid option)
- Improve selected text detection                    

एक्सटेंशन की मूल जानकारी

नाम Case Converter Case Converter
ID fafjbcmmefdbbmdobiklamfjkabilpnf
आधिकारिक URL https://chromewebstore.google.com/detail/case-converter/fafjbcmmefdbbmdobiklamfjkabilpnf
विवरण Easily convert the selected text in upper case, lower case, ect.
फ़ाइल का आकार 43.29 KB
स्थापना संख्या 760
वर्तमान संस्करण 3.0.0
अंतिम अपडेट 2021-10-14
प्रकाशन तिथि 2018-10-02
रेटिंग 3.90/5 कुल 21 रेटिंग्स
डेवलपर Martial Séron
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MartialSeron/case-converter
सहायता पृष्ठ URL https://github.com/MartialSeron/case-converter/issues
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlwWofFM6TGqag0Os3JqGKWLT0H54iMWZX6Ro4uc0AFmSBGBb15EboCUXJJy2Z10A4hURNSKRSij2PuSdDq4xd\/Y3MiBcKBuGsfGmSBtxNb7gPex1QX7uPKUr+jJXalUz2jAw0xMAbz0eUtUJtb\/kke8tDObJ8xjzyaA0BQKYzHaZqiJXT04DXaQir5\/4+hSSlw4wNyi6DU8vFJEHI9xfXp4yksts86MjzY+iOZ\/WG00+rNaowSipiZgWrXRd346fNI7CQZ66lZacTiSfRMpbdUoK1K3jWNMQJi3GNC3PyhKZHy3L2ac6mebBh7Gt7YNVD5pQthz+66RfNuXIxTlfWQIDAQAB",
    "manifest_version": 2,
    "name": "__MSG_case_converter_extension_name__",
    "short_name": "__MSG_case_converter_extension_name__",
    "version": "3.0.0",
    "description": "__MSG_case_converter_extension_desc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "72": "icons\/icon72.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/context_menu.js",
            "scripts\/background.js"
        ]
    },
    "commands": {
        "cc_upper": {
            "description": "__MSG_ccm_upper_case__",
            "suggested_key": {
                "default": "Alt+Shift+U"
            }
        },
        "cc_lower": {
            "description": "__MSG_ccm_lower_case__",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "cc_sentence": {
            "description": "__MSG_ccm_sentence_case__"
        },
        "cc_camel": {
            "description": "__MSG_ccm_camel_case__",
            "suggested_key": {
                "default": "Alt+Shift+K"
            }
        },
        "cc_pascal": {
            "description": "__MSG_ccm_pascal_case__"
        },
        "cc_capital": {
            "description": "__MSG_ccm_capital_case__"
        },
        "cc_wo_accent": {
            "description": "__MSG_ccm_wo_accent__",
            "suggested_key": {
                "default": "Alt+Shift+A"
            }
        },
        "cc_email": {
            "description": "__MSG_ccm_email__"
        },
        "cc_slugify": {
            "description": "__MSG_ccm_slugify__"
        },
        "cc_urlencode": {
            "description": "__MSG_ccm_urlencode__"
        },
        "cc_urldecode": {
            "description": "__MSG_ccm_urldecode__"
        },
        "cc_informations": {
            "description": "__MSG_ccm_informations__"
        }
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/www.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js",
                "scripts\/diacritics.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}