Case Cat
A text transformer extension.
Wat is Case Cat?
Case Cat is een Chrome-extensie ontwikkeld door Austen Morgan, en de belangrijkste functie is "A text transformer extension.".
Extensie Screenshots
Download het CRX-bestand van de extensie Case Cat
Download Case Cat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
𝗨𝘀𝗮𝗴𝗲 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̼̭̟̥͓̄͗ͬ̊ͮ
Basisinformatie over de Extensie
Naam | Case Cat |
ID | lglonldeanebhiaeocgeifacebknejjp |
Officiële URL | https://chromewebstore.google.com/detail/case-cat/lglonldeanebhiaeocgeifacebknejjp |
Beschrijving | A text transformer extension. |
Bestandsgrootte | 30.76 KB |
Aantal Installaties | 1,651 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2023-01-05 |
Publicatiedatum | 2018-07-03 |
Beoordeling | 3.15/5 Totaal 13 Beoordelingen |
Ontwikkelaar | Austen Morgan |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/austencm/case-cat |
Help Pagina-URL | https://github.com/austencm/case-cat/issues |
Ondersteunde Talen | 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" } } |