Convert Case

Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên qua các convention.

What is Convert Case?

Convert Case is a Chrome extension developed by Phạm Văn Đoan, and its main feature is "Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên qua các convention.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Convert Case Extension CRX File

Download Convert Case extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên biến, tên hàm, tên hằng qua các dạng convention khác nhau. Ví dụ: Bạn chỉ cần nhập: get user info, khi đó nếu Bạn muốn tạo tên class thì bạn có thể chọn PascalCase, nếu Bạn muốn tạo tên hàm thì chọn camelCase...                    

Extension Basic Information

Name Convert Case Convert Case
ID gpbmadmbpdnnoldadmhppoeijffjnopl
Official URL https://chromewebstore.google.com/detail/convert-case/gpbmadmbpdnnoldadmhppoeijffjnopl
Description Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên qua các convention.
File Size 153 KB
Installation Count 84
Current Version 1.6
Last Updated 2022-06-16
Publish Date 2020-04-14
Rating 5.00/5 Total 5 Ratings
Developer Phạm Văn Đoan
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Convert Case",
    "short_name": "VN Convert Case: C\u00f4ng c\u1ee5 h\u1ed7 tr\u1ee3 l\u1eadp tr\u00ecnh vi\u00ean khi mu\u1ed1n chuy\u1ec3n \u0111\u1ed5i t\u00ean qua c\u00e1c convention",
    "version": "1.6",
    "description": "C\u00f4ng c\u1ee5 h\u1ed7 tr\u1ee3 l\u1eadp tr\u00ecnh vi\u00ean khi mu\u1ed1n chuy\u1ec3n \u0111\u1ed5i t\u00ean qua c\u00e1c convention.",
    "manifest_version": 3,
    "permissions": [],
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/libs\/jquery.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png"
        },
        "default_title": "Convert Case",
        "default_popup": "popup.html"
    }
}