Case Cat
A text transformer extension.
什么是Case Cat?
Case Cat是由Austen Morgan开发的Chrome扩展程序,该扩展的主要功能是“A text transformer extension.”。
扩展截图
下载Case Cat扩展crx文件
下载Case Cat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
𝗨𝘀𝗮𝗴𝗲
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̼̭̟̥͓̄͗ͬ̊ͮ 扩展基本信息
| 名称 | |
| ID | lglonldeanebhiaeocgeifacebknejjp |
| 官方URL | https://chromewebstore.google.com/detail/case-cat/lglonldeanebhiaeocgeifacebknejjp |
| 简介 | A text transformer extension. |
| 文件大小 | 30.76 KB |
| 安装次数 | 1,651 |
| 当前版本 | 2.0.0 |
| 更新时间 | 2023-01-05 |
| 上架时间 | 2018-07-03 |
| 评分 | 3.15/5 共13次评分 |
| 开发者 | Austen Morgan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/austencm/case-cat |
| 帮助页面URL | https://github.com/austencm/case-cat/issues |
| 支持的语言 | 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"
}
} | |