Case Cat
A text transformer extension.
Cos'è Case Cat?
Case Cat è un'estensione di Chrome sviluppata da Austen Morgan, e la sua funzione principale è "A text transformer extension.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Case Cat
Scarica i file di estensione Case Cat 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
𝗨𝘀𝗮𝗴𝗲 1. Highlight some text and right click on it. 2. Hover over 'Transform Text' in the menu and choose a format. 3. The transformed text is copied to your clipboard. Optionally, Case Cat will attempt to replace the selected text on the page. ☝️ Text replacement works well in text boxes, but can be inconsistent elsewhere. 𝗙𝗼𝗿𝗺𝗮𝘁𝘀 Prose --------- Sentence: Fluffy feet Title: Fluffy Feet Upper: FLUFFY FEET Lower: fluffy feet Random fluFFY fEeT Code --------- Camel: fluffyFeet Constant: FLUFFY_FEET Dot: fluffy.feet Header: Fluffy-Feet Param: fluffy-feet Path: fluffy/feet Snake: fluffy_feet Utility --------- Base64: Rmx1ZmZ5IGZlZXQ= URI Encode: Fluffy%20feet Unicode --------- Bold: 𝗙𝗹𝘂𝗳𝗳𝘆 𝗳𝗲𝗲𝘁 Italic: 𝘍𝘭𝘶𝘧𝘧𝘺 𝘧𝘦𝘦𝘵 Script: ℱ𝓁𝓊𝒻𝒻𝓎 𝒻ℯℯ𝓉 Fraktur: 𝔉𝔩𝔲𝔣𝔣𝔶 𝔣𝔢𝔢𝔱 Circle: Ⓕⓛⓤⓕⓕⓨ ⓕⓔⓔⓣ Square: 🄵🄻🅄🄵🄵🅈 🄵🄴🄴🅃 Zalgo: F̧͉̪̉̆ͭͬ́ͯͤ͗͟l͍͖͓̖̟ͯ̀u̢̺̭͕̰͛̎͑̂̌ḟ͚̳̮̦͖ͣ̌̒͊ͧ͑ͭͅͅf̜͙̄͆ͮ͂ͣ̊y̼̲͓̬̠̑̎ͦ̔͂̍ͤ̀ ̪͈͍͎͍͚̺ͪ̂̒͡f̷̘̪̳̞̩͗ͯ̋ͥ̒ͭe̳͔̮͍̝̺̤̱̅̈́e̡̱̫̬̬͕̼͕̓̀́̂͋͋͌͊͢t̼̭̟̥͓̄͗ͬ̊ͮ
Informazioni di Base sull'Estensione
Nome | Case Cat |
ID | lglonldeanebhiaeocgeifacebknejjp |
URL Ufficiale | https://chromewebstore.google.com/detail/case-cat/lglonldeanebhiaeocgeifacebknejjp |
Descrizione | A text transformer extension. |
Dimensione del File | 30.76 KB |
Conteggio Installazioni | 1,651 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2023-01-05 |
Data di Pubblicazione | 2018-07-03 |
Valutazione | 3.15/5 Totale 13 Valutazioni |
Sviluppatore | Austen Morgan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/austencm/case-cat |
URL della Pagina di Aiuto | https://github.com/austencm/case-cat/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/austencm\/case-cat", "version": "2.0.0", "manifest_version": 3, "default_locale": "en", "permissions": [ "activeTab", "scripting", "clipboardRead", "clipboardWrite", "contextMenus", "storage" ], "incognito": "split", "icons": { "128": "images\/icon-128.png" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png" }, "default_title": "Options", "default_popup": "options.html" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html" } } |