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文件

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