Instant Smart Quotes

Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type.

Instant Smart Quotesคืออะไร?

Instant Smart Quotes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Florian Zemke และคุณลักษณะหลักของมันคือ "Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instant Smart Quotes

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

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

                        Instant Smart Quotes is the last extension you will need to write beautiful typographically correct texts.

- Support for over 50 languages
- Quickly enable and disable the instant replacements from the toolbar
- Quickly change the language from the toolbar
- All settings are saved per page and synched across all of your devices
- Text in `backticks` will be ignored in favor of Markdown

Depending on which language you have set, the following chars will be replaced for language-specific replacements (comma-separated):
', ", >>, <<

Chars that will be replaced for no matter which language are the following (comma-separated):
', --, ---, ...

This website is a nice manual for English punctuation guidelines:
http://www.thepunctuationguide.com/

Sources of which quotes to be used for which language:
https://en.wikipedia.org/wiki/Quotation_mark#Summary_table
http://www.witch.westfalen.de/csstest/quotes/quotes.html

`"Don't be dumb"`, “you’re using Instant Smart Quotes”. ✍️                    

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

ชื่อ Instant Smart Quotes Instant Smart Quotes
ID dddflkfjemblhfmjdlmmilapbkdaabcj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/instant-smart-quotes/dddflkfjemblhfmjdlmmilapbkdaabcj
คำอธิบาย Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type.
ขนาดไฟล์ 17.6 KB
จำนวนการติดตั้ง 1,179
เวอร์ชันปัจจุบัน 6.0.0
อัปเดตครั้งล่าสุด 2022-09-12
วันที่เผยแพร่ 2020-03-27
คะแนน 4.24/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา Florian Zemke
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Zemke/instant-smart-quotes
URL หน้าช่วยเหลือ https://github.com/Zemke/instant-smart-quotes/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instant Smart Quotes",
    "version": "6.0.0",
    "description": "Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type.",
    "author": "Florian Zemke",
    "homepage_url": "https:\/\/github.com\/Zemke\/instant-smart-quotes",
    "manifest_version": 2,
    "offline_enabled": true,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{6eee356b-4400-40d2-b4f9-b5e6ab5965e5}"
        }
    },
    "browser_action": {
        "default_title": "Instant Smart Quotes",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/bookmarklet.js"
            ],
            "all_frames": true
        }
    ]
}