Fast String Converter

Convert a string's format with only one click.

Fast String Converterคืออะไร?

Fast String Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jmt และคุณลักษณะหลักของมันคือ "Convert a string's format with only one click."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fast String Converter

ดาวน์โหลดไฟล์ส่วนขยาย Fast String Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is a tool that can execute some common string transformation functions, such as case alternation or the replacement of spaces with underscores. Some of these functions are the same that can be found in word processors like Microsoft Word, and some others can be really useful specially in programming contexts. This extension has been created with the goal of performing these transformations with as few clicks as possible, making this process the quickest it can be.

The conversion functions can be executed by clicking on the buttons that are located in the extension's popup, which is shown in the provided screenshot. This contains also two textareas: when the conversion functions are executed the text that is taken to be transformed is the one that is contained in the upper textarea in that moment. Its content is overwritten with the result of the transformation and the lower textarea then displays the text as it was before the conversion. This operation can be observed in the linked video (https://youtu.be/39m2CgqbQRg).

Code: https://github.com/jmt-chromeextensions/FastStringConverter                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fast String Converter Fast String Converter
ID gkbgabiamikdihcdllgbbdmhklkpbadi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fast-string-converter/gkbgabiamikdihcdllgbbdmhklkpbadi
คำอธิบาย Convert a string's format with only one click.
ขนาดไฟล์ 290 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.0.0.1
อัปเดตครั้งล่าสุด 2020-04-06
วันที่เผยแพร่ 2020-04-06
ผู้พัฒนา jmt
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jmt-chromeextensions/FastStringConverter
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fast String Converter",
    "version": "1.0.0.1",
    "browser_action": {
        "default_title": "Turn off the light.",
        "default_popup": "views\/popup.html"
    },
    "description": "Convert a string's format with only one click.",
    "icons": {
        "16": "extension_icons\/faststringconverter-16.png",
        "32": "extension_icons\/faststringconverter-32.png",
        "48": "extension_icons\/faststringconverter-48.png",
        "128": "extension_icons\/faststringconverter-128.png"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}