Convert Case

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

Vad är Convert Case?

Convert Case är en Chrome-tillägg utvecklad av https://convertcase.net, och dess huvudfunktion är "Convert text in your browser between UPPER CASE, lower case and more".

Tilläggsskärmbilder

screenshot

Ladda ner Convert Case-förlängningens CRX-fil

Ladda ner Convert Case-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
Officiell webbadress https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Beskrivning Convert text in your browser between UPPER CASE, lower case and more
Filstorlek 12.78 KB
Antal Installationer 7,168
Aktuell Version 1.0.9
Senast Uppdaterad 2023-09-15
Publiceringsdatum 2022-09-28
Betyg 3.77/5 Totalt 22 Betyg
Utvecklare https://convertcase.net
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://convertcase.net
Hjälpsida URL https://convertcase.net
URL till Sekretesspolicy Sidan https://convertcase.net/privacy
Stödda Språk 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"
        }
    }
}