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.

Cos'è Convert Case?

Convert Case è un'estensione di Chrome sviluppata da Phạm Văn Đoan, e la sua funzione principale è "Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên qua các convention.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Convert Case

Scarica i file di estensione Convert Case in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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...                    

Informazioni di Base sull'Estensione

Nome Convert Case Convert Case
ID gpbmadmbpdnnoldadmhppoeijffjnopl
URL Ufficiale https://chromewebstore.google.com/detail/convert-case/gpbmadmbpdnnoldadmhppoeijffjnopl
Descrizione Công cụ hỗ trợ lập trình viên khi muốn chuyển đổi tên qua các convention.
Dimensione del File 153 KB
Conteggio Installazioni 84
Versione Corrente 1.6
Ultimo Aggiornamento 2022-06-16
Data di Pubblicazione 2020-04-14
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Phạm Văn Đoan
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}