ChangeCase
Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.
ChangeCaseคืออะไร?
ChangeCase เป็นส่วนขยายของ Chrome ที่พัฒนาโดย konstantinsmetana และคุณลักษณะหลักของมันคือ "Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChangeCase
ดาวน์โหลดไฟล์ส่วนขยาย ChangeCase ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.
Lowercase to Uppercase
Uppercase to Lowercase
Convertcase
String to Slug
Shortcuts:
Strg+Shift+U - Uppercase
Strg+Shift+L - Lowercase
Strg+Shift+Z - Convert
Anleitung:
1. Text auswählen
2. Rechte maustaste klicken oder Tastenkombination ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | akjieklehambjpcljkajdgmfgphkhfko |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/changecase/akjieklehambjpcljkajdgmfgphkhfko |
| คำอธิบาย | Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern. |
| ขนาดไฟล์ | 8.13 KB |
| จำนวนการติดตั้ง | 552 |
| เวอร์ชันปัจจุบัน | 0.1.1 |
| อัปเดตครั้งล่าสุด | 2017-02-23 |
| วันที่เผยแพร่ | 2017-02-23 |
| คะแนน | 3.18/5 รวมทั้งหมด 11 คะแนน |
| ผู้พัฒนา | konstantinsmetana |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ChangeCase",
"description": "Change Case (ChangeCase) - kleines Tool um die Gro\u00df-\/Kleinschreibung (lowercase \/ uppercase) von Text zu \u00e4ndern.",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"contextMenus"
],
"version": "0.1.1",
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"64": "64.png",
"128": "128.png"
},
"background": {
"page": "background.html"
},
"commands": {
"uppercase": {
"description": "Uppercase",
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
}
},
"lowercase": {
"description": "Lowercase",
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
}
},
"convertcase": {
"description": "Convert case",
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
}
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
]
} | |