Change Case

Multiple methods to change text case.

ما هو Change Case؟

Change Case هو إضافة Chrome تم تطويرها بواسطة https://www.bartoszlorek.pl، والميزة الرئيسية لها هي "Multiple methods to change text case.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Change Case

قم بتنزيل ملفات الامتداد Change Case بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The set of advanced methods to change case of text, delivered as convenient extension for browser Google Chrome. Compatible with various elements of the website: input, textarea, editable content (popular text editors like TinyMCE).

Included methods like correct grammatically title case, sentence case, upper case or lower case with addition of methods for programmers: camel case, pascal case and many more.

Tip: no case reverts changes applied by other methods.

Privacy Policy: Change Case extension does not handling any user sensitive or personal data. All content transformations are performed via algorithms on user's device without third parties.
______________________________________________

Changelog:

2.4.2
- fix options page shaking on auto scroll bars

2.4.1
- fix issues

2.4.0
- improve filters

2.3.0
- support native browser keyboard shortcuts

2.2.1
- improve title case: hyphens and unicode characters

2.2.0
- introduce operators
- add correct list

2.1.5
- improve conversion between methods
- allow to disable notifications
- fix default values overwriting
- fix ui problems

2.1.4
- sentence case handles multiple sentences and common abbreviations

2.1.3
- fix initialization problems

2.1.2
- preserve selection

2.1.1
- update notification

2.1.0
- buttons for managing shortcuts
- proper English title case
- fix initialization problems
- minor optimization changes

2.0.1
- add 'no accents' case

2.0.0
- options page
- blacklist words/phrases
- keyboard shortcuts
- major core changes

1.0.0
- basic methods
- context menu                    

معلومات أساسية عن التمديد

الاسم Change Case Change Case
ID lpakoahdokkkonadfppfgmednkknpgbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/change-case/lpakoahdokkkonadfppfgmednkknpgbm
الوصف Multiple methods to change text case.
حجم الملف 104 KB
عدد التثبيتات 67,130
النسخة الحالية 2.4.2
آخر تحديث 2020-11-18
تاريخ النشر 2019-09-17
تقييم 4.55/5 مجموع تقييمات 127
المطور https://www.bartoszlorek.pl
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Change Case",
    "short_name": "Change Case",
    "version": "2.4.2",
    "author": "Bartosz Lorek",
    "description": "Multiple methods to change text case.",
    "homepage_url": "http:\/\/www.bartoszlorek.pl\/",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "icons": {
        "16": "assets\/icon16.png",
        "19": "assets\/icon19.png",
        "38": "assets\/icon38.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon16.png"
    },
    "commands": {
        "11_upperCase": {
            "description": "UPPERCASE",
            "suggested_key": {
                "default": "Alt+1"
            }
        },
        "12_lowerCase": {
            "description": "lowercase",
            "suggested_key": {
                "default": "Alt+2"
            }
        },
        "13_titleCase": {
            "description": "Title Case",
            "suggested_key": {
                "default": "Alt+3"
            }
        },
        "14_sentenceCase": {
            "description": "Sentence case",
            "suggested_key": {
                "default": "Alt+4"
            }
        },
        "15_camelCase": {
            "description": "camelCase"
        },
        "16_pascalCase": {
            "description": "PascalCase"
        },
        "17_constantCase": {
            "description": "CONSTANT_CASE"
        },
        "18_paramCase": {
            "description": "param-case"
        },
        "19_snakeCase": {
            "description": "snake_case"
        },
        "21_dotCase": {
            "description": "dot.case"
        },
        "22_toggleCase": {
            "description": "tOGGLE cASE"
        },
        "23_noAccents": {
            "description": "no accents"
        },
        "24_noCase": {
            "description": "no case"
        }
    }
}