Instant Smart Quotes

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

Instant Smart Quotes란 무엇입니까?

Instant Smart Quotes은(는) Florian Zemke에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace typewriter quotes, apostrophes, ellipses and dashes with their typographically correct counterparts as you type."입니다.

확장 프로그램 스크린샷

screenshot

Instant Smart Quotes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}