Fix Case

Change case according to chosen option

Fix Caseคืออะไร?

Fix Case เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fixr และคุณลักษณะหลักของมันคือ "Change case according to chosen option"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fix Case

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

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

                        UPDATE: This is now open source: https://github.com/antorsae/fixcase

1) Changes case of selected text, either to Sentence case or to Title Case

Examples:

I LIVE IN NEW WORK -> To sentence case -> I live in New York

Notice how New York retains its proper capitalization, the extension handles a lot of special capitalization cases (e.g. names, acronyms, etc.).

I LIVE IN NEW WORK -> To Title case -> I Live in New York

Notice how 'Live' is capitalized but 'in' is not because it capitalizes the first and last words, and all other words; except for articles, prepositions, and conjunctions.

See http://en.wikipedia.org/wiki/Letter_case for further information.

2) Converts selected text into a bulletized list of items, provided that selected text contains comma-separated list of items. 

HOW TO USE IT:

a) Select a text fragment within a form and right click the selected option

b) Select a text fragment within a form press:

CONTROL + SHIFT + S  for 'Sentence case'
CONTROL + SHIFT + T  for 'Title Case'
CONTROL + SHIFT + B  for 'Bulletize'

c) Place your cursor on a form (don't select any text) and press:

CONTROL + SHIFT + S  for 'Sentence case'
CONTROL + SHIFT + T  for 'Title Case'
CONTROL + SHIFT + B  for 'Bulletize'

To act on all text within the form.

IMPORTANT: To enable keyboard shortcuts:

1. You must be running Chrome 24 or above (install Chrome beta here https://www.google.com/landing/chrome/beta/)

2. Install the extension

3. Go to Chrome -> Tools -> Extensions.  On the bottom right click on "Configure commands" and associate the keyboard shortcuts with the "Fix Case" extension commands.                    

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

ชื่อ Fix Case Fix Case
ID fadobahpignjflibiopaejicbpdfokpb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/fix-case/fadobahpignjflibiopaejicbpdfokpb
คำอธิบาย Change case according to chosen option
ขนาดไฟล์ 8.94 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.15
อัปเดตครั้งล่าสุด 2014-03-27
วันที่เผยแพร่ 2014-03-27
คะแนน 2.36/5 รวมทั้งหมด 56 คะแนน
ผู้พัฒนา Fixr
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fix Case",
    "version": "1.15",
    "manifest_version": 2,
    "description": "Change case according to chosen option",
    "icons": {
        "48": "i48.ico"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus"
    ],
    "background": {
        "page": "background.html"
    },
    "commands": {
        "to-sentence-case": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "To sentence case"
        },
        "to-title-case": {
            "suggested_key": {
                "default": "Ctrl+Shift+T",
                "mac": "Command+Shift+T"
            },
            "description": "To Title Case"
        },
        "bulletize": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Command+Shift+B"
            },
            "description": "Bulletize"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}